Mercurial > repos > galaxyp > msi_preprocessing
changeset 0:74fcb3c95a53 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/msi_preprocessing commit c4e490c83537b39418b5f09d624f7d4da3f3ad55
author | galaxyp |
---|---|
date | Tue, 31 Oct 2017 15:05:05 -0400 |
parents | |
children | c4abf42419c2 |
files | msi_preprocessing.xml test-data/Analyze75.hdr test-data/Analyze75.img test-data/Analyze75.t2m test-data/Example_Continuous.ibd test-data/Example_Continuous.imzML test-data/LM5_first68pixel.RData test-data/preprocessing_results1.RData test-data/preprocessing_results1.csv test-data/preprocessing_results2.RData test-data/preprocessing_results2.csv test-data/preprocessing_results3.RData test-data/preprocessing_results3.csv |
diffstat | 13 files changed, 9357 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msi_preprocessing.xml Tue Oct 31 15:05:05 2017 -0400 @@ -0,0 +1,340 @@ +<tool id="mass_spectrometry_imaging_preprocessing" name="MSI preprocessing" version="1.7.0"> + <description> + mass spectrometry imaging preprocessing + </description> + <requirements> + <requirement type="package" version="1.7.0">bioconductor-cardinal</requirement> + </requirements> + <command detect_errors="exit_code"> + <![CDATA[ + + #if $infile.ext == 'imzml' + cp '${infile.extra_files_path}/imzml' infile.imzML && + cp '${infile.extra_files_path}/ibd' infile.ibd && + #elif $infile.ext == 'analyze75' + cp '${infile.extra_files_path}/hdr' infile.hdr && + cp '${infile.extra_files_path}/img' infile.img && + cp '${infile.extra_files_path}/t2m' infile.t2m && + #else + ln -s '$infile' infile.RData && + #end if + cat '${cardinal_preprocessing}' && + Rscript '${cardinal_preprocessing}' + + ]]> + </command> + <configfiles> + <configfile name="cardinal_preprocessing"><![CDATA[ +library(Cardinal) + +#if $infile.ext == 'imzml' + msidata <- readMSIData('infile.imzML') +#elif $infile.ext == 'analyze75' + msidata <- readMSIData('infile.hdr') +#else + load('infile.RData') +#end if + +maxpixel = length(pixels(msidata)) +pixelnumber = c(1:maxpixel) + +#for $method in $methods: + #if str( $method.methods_conditional.preprocessing_method ) == 'Normalization': + print('Normalization') + ##normalization + msidata <- normalize(msidata, pixel=pixelnumber, method="tic") + + #elif str( $method.methods_conditional.preprocessing_method ) == 'Baseline_reduction': + print('Baseline_reduction') + ##baseline reduction + msidata = reduceBaseline(msidata, pixel=pixelnumber, method="median", blocks=$method.methods_conditional.blocks_baseline) + + #elif str( $method.methods_conditional.preprocessing_method ) == 'Smoothing': + print('Smoothing') + ## Smoothing + + #if str( $method.methods_conditional.methods_for_smoothing.smoothing_method) == 'gaussian': + print('gaussian smoothing') + msidata <- smoothSignal(msidata, method="$method.methods_conditional.methods_for_smoothing.smoothing_method", window=$method.methods_conditional.window_smoothing, sd = $method.methods_conditional.methods_for_smoothing.sd_gaussian) + #elif str( $method.methods_conditional.methods_for_smoothing.smoothing_method) == 'sgolay': + print('sgolay smoothing') + msidata <- smoothSignal(msidata, method="$method.methods_conditional.methods_for_smoothing.smoothing_method", window=$method.methods_conditional.window_smoothing, order = $method.methods_conditional.methods_for_smoothing.order_of_filters) + #elif str($method.methods_conditional.methods_for_smoothing.smoothing_method) == 'ma': + print('sgolay smoothing') + msidata <- smoothSignal(msidata, method="$method.methods_conditional.methods_for_smoothing.smoothing_method", window=$method.methods_conditional.window_smoothing, coef = $method.methods_conditional.methods_for_smoothing.coefficients_ma_filter) + #end if + + #elif str( $method.methods_conditional.preprocessing_method) == 'Peak_picking': + print('Peak_picking') + ## Peakpicking + + #if str( $method.methods_conditional.methods_for_picking.picking_method) == 'adaptive': + print('adaptive peakpicking') + msidata = peakPick(msidata, pixel=pixelnumber, window = $method.methods_conditional.window_picking, blocks = $method.methods_conditional.blocks_picking, method='$method.methods_conditional.methods_for_picking.picking_method', SNR=$method.methods_conditional.SNR_picking_method, spar=$method.methods_conditional.methods_for_picking.spar_picking) + + #elif str( $method.methods_conditional.methods_for_picking.picking_method) == 'limpic': + print('limpic peakpicking') + msidata = peakPick(msidata, pixel=pixelnumber, window = $method.methods_conditional.window_picking, blocks = $method.methods_conditional.blocks_picking, method='$method.methods_conditional.methods_for_picking.picking_method', SNR=$method.methods_conditional.SNR_picking_method, thresh=$method.methods_conditional.methods_for_picking.tresh_picking) + + #elif str( $method.methods_conditional.methods_for_picking.picking_method) == 'simple': + print('simple peakpicking') + msidata = peakPick(msidata, pixel=pixelnumber, window = $method.methods_conditional.window_picking, blocks = $method.methods_conditional.blocks_picking, method='$method.methods_conditional.methods_for_picking.picking_method', SNR=$method.methods_conditional.SNR_picking_method) + #end if + + #elif str( $method.methods_conditional.preprocessing_method ) == 'Peak_alignment': + print('Peak_alignment') + ## Peakalignment + + #if str( $method.methods_conditional.methods_for_alignment.alignment_method) == 'diff': + print('diff peaklignment') + msidata = peakAlign(msidata, method='$method.methods_conditional.methods_for_alignment.alignment_method',diff.max =$method.methods_conditional.methods_for_alignment.value_diffalignment, units = "$method.methods_conditional.methods_for_alignment.units_diffalignment") + + #elif str( $method.methods_conditional.methods_for_alignment.alignment_method) == 'DP': + print('DPpeaklignment') + msidata = peakAlign(msidata, method='$method.methods_conditional.methods_for_alignment.alignment_method',gap = $method.methods_conditional.methods_for_alignment.gap_DPalignment ) + #end if + + #elif str( $method.methods_conditional.preprocessing_method) == 'Peak_filtering': + print('Peak_filtering') + msidata = peakFilter(msidata, method='freq', freq.min = $method.methods_conditional.frequ_filtering) + #end if +#end for + +## save as as (.RData) +save(msidata, file="$msidata_preprocessed") + +## save as intensity matrix (.csv) +csvmatrix = spectra(msidata) +rownames(csvmatrix) = mz(msidata) +newmatrix = rbind(pixels(msidata), csvmatrix) +write.csv(newmatrix[2:nrow(newmatrix),], file="$preprocessed_intensity_matrix") + + ]]></configfile> + </configfiles> + <inputs> + <param name="infile" type="data" format="imzml,rdata,analyze75" + label="MSI rawdata as imzml or Cardinal MSImageSet saved as RData" + help="load imzml and ibd file by uploading composite datatype imzml"/> + + <repeat name="methods" title="Preprocessing" min="1" max="50"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" type="select" label="Select the preprocessing methods you want to apply"> + <option value="Normalization" selected="True">Normalization to TIC</option> + <option value="Baseline_reduction">Baseline Reduction</option> + <option value="Smoothing">Peak smoothing</option> + <option value="Peak_picking">Peak picking</option> + <option value="Peak_alignment">Peak alignment</option> + <option value="Peak_filtering">Peak filtering</option> + </param> + <when value="Normalization"/> + <when value="Baseline_reduction"> + <param name="blocks_baseline" type="integer" value="50" + label="blocks"/> + </when> + <when value="Smoothing"> + <conditional name="methods_for_smoothing"> + <param name="smoothing_method" type="select" label="Smoothing method"> + <option value="gaussian" selected="True">gaussian</option> + <option value="sgolay">Savitsky-Golay</option> + <option value="ma">moving average</option> + </param> + <when value="gaussian"> + <param name="sd_gaussian" type="float" value="4" + label="The standard deviation for the Gaussian kernel (window/sd)"/> + </when> + <when value="sgolay"> + <param name="order_of_filters" type="integer" value="3" + label="The order of the smoothing filter"/> + </when> + <when value="ma"> + <param name="coefficients_ma_filter" type="integer" value="1" + label="The coefficients for the moving average filter"/> + </when> + </conditional> + <param name="window_smoothing" type="integer" value="9" + label="Window size"/> + </when> + <when value="Peak_picking"> + <param name="SNR_picking_method" type="integer" value="3" + label="Signal to noise ratio" + help="The minimal signal to noise ratio for peaks to be considered as a valid peak."/> + <param name="blocks_picking" type="integer" value="100" label = "number of blocks" + help="Number of blocks in which to divide mass spectrum to calculate noise"/> + <param name="window_picking" type="integer" value="5" label= "window size" help="Window width for seeking local maxima"/> + <conditional name="methods_for_picking"> + <param name="picking_method" type="select" label="Peak picking method" help = "only simple works for processed imzML files"> + <option value="adaptive" selected="True">adaptive</option> + <option value="limpic">limpic</option> + <option value="simple">simple</option> + </param> + <when value="adaptive"> + <param name="spar_picking" type="float" value="1.0" + label="spar value" + help = "Smoothing parameter for the spline smoothing + applied to the spectrum in order to decide the cutoffs + for throwing away false noise spikes that might occur inside peaks"/> + </when> + <when value="limpic"> + <param name="tresh_picking" type="float" value="0.75" + label="thresh value" help = "The thresholding quantile to use when comparing slopes in order to throw away peaks that are too flat"/> + </when> + <when value="simple"/> + </conditional> + </when> + <when value="Peak_alignment"> + <conditional name="methods_for_alignment"> + <param name="alignment_method" type="select" label="Alignment method"> + <option value="diff" selected="True">diff</option> + <option value="DP">DP</option> + </param> + <when value="diff"> + <param name="value_diffalignment" type="integer" value="200" + label="diff.max" help="Peaks that differ less than this value will be aligned together"/> + <param name="units_diffalignment" type="select" display = "radio" optional = "False" + label="units" help= "The coefficients for the moving average filter"> + <option value="ppm" selected="True">ppm</option> + <option value="Da">Da</option> + </param> + </when> + <when value="DP"> + <param name="gap_DPalignment" type="integer" value="0" + label="gap" help = "The gap penalty for the dynamic programming sequence alignment"/> + </when> + </conditional> + </when> + <when value="Peak_filtering"> + <param name="frequ_filtering" type="float" value="1" + label="freq.min" help = "Peaks that occur in the dataset fewer times than this will be removed"/> + </when> + </conditional> + </repeat> + </inputs> + <outputs> + <data format="rdata" name="msidata_preprocessed" label="Preprocessed_output"/> + <data format="csv" name="preprocessed_intensity_matrix" label="preprocessed intensity matrix" /> + </outputs> + <tests> + <test> + <param name="infile" value="" ftype="imzml"> + <composite_data value="Example_Continuous.imzML" ftype="imzml"/> + <composite_data value="Example_Continuous.ibd" ftype="ibd"/> + </param> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Normalization" /> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Smoothing" /> + <conditional name="methods_for_smoothing"> + <param name="smoothing_method" value="sgolay" /> + </conditional> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_picking" /> + <conditional name="methods_for_picking"> + <param name="picking_method" value="adaptive" /> + </conditional> + <param name="blocks_picking" value="3" /> + <param name="window_picking" value="3" /> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_alignment" /> + <conditional name="methods_for_alignment"> + <param name="alignment_method" value="DP" /> + </conditional> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_filtering" /> + </conditional> + </repeat> + <output name="msidata_preprocessed" file="preprocessing_results1.RData" compare="sim_size" /> + <output name="preprocessed_intensity_matrix" file="preprocessing_results1.csv" /> + </test> + <test> + <param name="infile" value="LM5_first68pixel.RData" ftype="rdata"/> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Baseline_reduction" /> + <param name="blocks_baseline" value="50" /> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_picking" /> + <param name="blocks_picking" value="3" /> + <param name="window_picking" value="5" /> + <param name="methods_for_picking" value="simple" /> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_alignment" /> + <param name="methods_for_alignment" value="DP" /> + </conditional> + </repeat> + <output name="msidata_preprocessed" file="preprocessing_results2.RData" compare="sim_size" /> + <output name="preprocessed_intensity_matrix" file="preprocessing_results2.csv" lines_diff="2"/> + </test> + <test> + <param name="infile" value="" ftype="analyze75"> + <composite_data value="Analyze75.hdr" ftype="hdr"/> + <composite_data value="Analyze75.img" ftype="img"/> + <composite_data value="Analyze75.t2m" ftype="t2m"/> + </param> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Normalization" /> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Smoothing" /> + <conditional name="methods_for_smoothing"> + <param name="smoothing_method" value="gaussian" /> + </conditional> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_picking" /> + <param name="blocks_picking" value="3" /> + <param name="window_picking" value="5" /> + <param name="methods_for_picking" value="limpic" /> + </conditional> + </repeat> + <repeat name="methods"> + <conditional name="methods_conditional"> + <param name="preprocessing_method" value="Peak_alignment" /> + <param name="methods_for_alignment" value="diff" /> + </conditional> + </repeat> + <output name="msidata_preprocessed" file="preprocessing_results3.RData" compare="sim_size" /> + <output name="preprocessed_intensity_matrix" file="preprocessing_results3.csv" /> + </test> + </tests> + <help> + <![CDATA[ +Cardinal is an R package that implements statistical & computational tools for analyzing mass spectrometry imaging datasets. + +**Preprocessing steps:** + +- Smoothening: Smoothing of the mass peaks reduces noise and improves peak detection +- Normalization: Normalization of intensities to total ion current (TIC) +- Baseline reduction: Baseline reduction removes backgroundintensity generated by chemical noise (common in MALDI datasets) +- Peak picking: relevant peaks are picked while noise-peaks are removed +- Peak alignment: mz inaccuracies are removed by alignment of same peaks to a common mz value +- Peak filtering: removes peaks that occur infrequently, such as those which only occur in a small proportion of pixels + ]]> + </help> + <citations> + <citation type="doi">10.1093/bioinformatics/btv146</citation> + </citations> +</tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/Example_Continuous.imzML Tue Oct 31 15:05:05 2017 -0400 @@ -0,0 +1,373 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<mzML xmlns="http://psi.hupo.org/ms/mzml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://psi.hupo.org/ms/mzml http://psidev.info/files/ms/mzML/xsd/mzML1.1.0_idx.xsd" version="1.1"> + <cvList count="3"> + <cv id="MS" fullName="Proteomics Standards Initiative Mass Spectrometry Ontology" version="1.3.1" URI="http://psidev.info/ms/mzML/psi-ms.obo"/> + <cv id="UO" fullName="Unit Ontology" version="1.15" URI="http://obo.cvs.sourceforge.net/obo/obo/ontology/phenotype/unit.obo"/> + <cv id="IMS" fullName="Imaging MS Ontology" version="0.9.1" URI="http://www.maldi-msi.org/download/imzml/imagingMS.obo"/> + </cvList> + <fileDescription> + <fileContent> + <cvParam cvRef="MS" accession="MS:1000579" name="MS1 spectrum" value=""/> + <cvParam cvRef="MS" accession="MS:1000128" name="profile spectrum" value=""/> + <cvParam cvRef="IMS" accession="IMS:1000080" name="universally unique identifier" value="{554A27FA-79D2-4766-9A2C-862E6D78B1F3}"/> + <cvParam cvRef="IMS" accession="IMS:1000091" name="ibd SHA-1" value="A5BE532D25997B71BE6D20C76561DDC4D5307DDD"/> + <cvParam cvRef="IMS" accession="IMS:1000030" name="continuous" value=""/> + </fileContent> + <sourceFileList count="1"> + <sourceFile id="sf1" name="Example.raw" location="C:\Users\Thorsten Schramm\Documents\Promotion\imzML\Website\files\Beispiel-Dateien\Example images\"> + <cvParam cvRef="MS" accession="MS:1000563" name="Thermo RAW file" value=""/> + <cvParam cvRef="MS" accession="MS:1000768" name="Thermo nativeID format" value=""/> + <cvParam cvRef="MS" accession="MS:1000569" name="SHA-1" value="7623BE263B25FF99FDF017154B86FAB742D4BB0B"/> + </sourceFile> + </sourceFileList> + <contact> + <cvParam cvRef="MS" accession="MS:1000586" name="contact name" value="Thorsten Schramm"/> + <cvParam cvRef="MS" accession="MS:1000590" name="contact organization" value="Institut für Anorganische und Analytische Chemie"/> + <cvParam cvRef="MS" accession="MS:1000587" name="contact address" value="Schubertstraße 60, Haus 16, Gießen, Germany"/> + <cvParam cvRef="MS" accession="MS:1000589" name="contact email" value="thorsten.schramm@anorg.chemie.uni-.giessen.de"/> + </contact> + </fileDescription> + <referenceableParamGroupList count="4"> + <referenceableParamGroup id="mzArray"> + <cvParam cvRef="MS" accession="MS:1000576" name="no compression" value=""/> + <cvParam cvRef="MS" accession="MS:1000514" name="m/z array" value="" unitCvRef="MS" unitAccession="MS:1000040" unitName="m/z"/> + <cvParam cvRef="IMS" accession="IMS:1000101" name="external data" value="true"/> + <cvParam cvRef="MS" accession="MS:1000521" name="32-bit float" value=""/> + </referenceableParamGroup> + <referenceableParamGroup id="intensityArray"> + <cvParam cvRef="MS" accession="MS:1000576" name="no compression" value=""/> + <cvParam cvRef="MS" accession="MS:1000515" name="intensity array" value="" unitCvRef="MS" unitAccession="MS:1000131" unitName="number of counts"/> + <cvParam cvRef="IMS" accession="IMS:1000101" name="external data" value="true"/> + <cvParam cvRef="MS" accession="MS:1000521" name="32-bit float" value=""/> + </referenceableParamGroup> + <referenceableParamGroup id="scan1"> + <cvParam cvRef="MS" accession="MS:1000093" name="increasing m/z scan" value=""/> + <cvParam cvRef="MS" accession="MS:1000095" name="linear" value=""/> + <cvParam cvRef="MS" accession="MS:1000512" name="filter string" value="ITMS - p NSI Full ms [100,00-800,00]"/> + </referenceableParamGroup> + <referenceableParamGroup id="spectrum1"> + <cvParam cvRef="MS" accession="MS:1000579" name="MS1 spectrum" value=""/> + <cvParam cvRef="MS" accession="MS:1000511" name="ms level" value="0"/> + <cvParam cvRef="MS" accession="MS:1000128" name="profile spectrum" value=""/> + <cvParam cvRef="MS" accession="MS:1000129" name="negative scan" value=""/> + </referenceableParamGroup> + </referenceableParamGroupList> + <sampleList count="1"> + <sample id="sample1" name="Sample1"> + <cvParam cvRef="MS" accession="MS:1000001" name="sample number" value="1"/> + </sample> + </sampleList> + <softwareList count="2"> + <software id="Xcalibur" version="2.2"> + <cvParam cvRef="MS" accession="MS:1000532" name="Xcalibur" value=""/> + </software> + <software id="TMC" version="1.1 beta"> + <cvParam cvRef="MS" accession="MS:1000799" name="custom unreleased software tool" value=""/> + </software> + </softwareList> + <scanSettingsList count="1"> + <scanSettings id="scansettings1"> + <cvParam cvRef="IMS" accession="IMS:1000401" name="top down" value=""/> + <cvParam cvRef="IMS" accession="IMS:1000413" name="flyback" value=""/> + <cvParam cvRef="IMS" accession="IMS:1000480" name="horizontal line scan" value=""/> + <cvParam cvRef="IMS" accession="IMS:1000491" name="linescan left right" value=""/> + <cvParam cvRef="IMS" accession="IMS:1000042" name="max count of pixel x" value="3"/> + <cvParam cvRef="IMS" accession="IMS:1000043" name="max count of pixel y" value="3"/> + <cvParam cvRef="IMS" accession="IMS:1000044" name="max dimension x" value="300" unitCvRef="UO" unitAccession="UO:0000017" unitName="micrometer"/> + <cvParam cvRef="IMS" accession="IMS:1000045" name="max dimension y" value="300" unitCvRef="UO" unitAccession="UO:0000017" unitName="micrometer"/> + <cvParam cvRef="IMS" accession="IMS:1000046" name="pixel size x" value="100" unitCvRef="UO" unitAccession="UO:0000017" unitName="micrometer"/> + <cvParam cvRef="IMS" accession="IMS:1000047" name="pixel size y" value="100" unitCvRef="UO" unitAccession="UO:0000017" unitName="micrometer"/> + <cvParam cvRef="MS" accession="MS:1000836" name="dried dropplet" value=""/> + <cvParam cvRef="MS" accession="MS:1000835" name="matrix solution concentration" value="10"/> + <cvParam cvRef="MS" accession="MS:1000834" name="matrix solution" value="DHB"/> + </scanSettings> + </scanSettingsList> + <instrumentConfigurationList count="1"> + <instrumentConfiguration id="LTQFTUltra0"> + <cvParam cvRef="MS" accession="MS:1000557" name="LTQ FT Ultra" value=""/> + <cvParam cvRef="MS" accession="MS:1000529" name="instrument serial number" value="none"/> + <componentList count="3"> + <source order="1"> + <cvParam cvRef="MS" accession="MS:1000073" name="electrospray ionization" value=""/> + <cvParam cvRef="MS" accession="MS:1000485" name="nanospray inlet" value=""/> + <cvParam cvRef="MS" accession="MS:1000843" name="wavelength" value="337"/> + <cvParam cvRef="MS" accession="MS:1000844" name="focus diameter x" value="10"/> + <cvParam cvRef="MS" accession="MS:1000845" name="focus diameter y" value="10"/> + <cvParam cvRef="MS" accession="MS:1000846" name="pulse energy" value="10"/> + <cvParam cvRef="MS" accession="MS:1000847" name="pulse duration" value="10"/> + <cvParam cvRef="MS" accession="MS:1000848" name="attenuation" value="50"/> + <cvParam cvRef="MS" accession="MS:1000850" name="gas laser" value=""/> + <cvParam cvRef="IMS" accession="IMS:1000202" name="target material" value="Conductive Glas"/> + </source> + <analyzer order="2"> + <cvParam cvRef="MS" accession="MS:1000264" name="ion trap" value=""/> + <cvParam cvRef="MS" accession="MS:1000014" name="accuracy" value="0" unitCvRef="MS" unitAccession="MS:1000040" unitName="m/z"/> + </analyzer> + <detector order="3"> + <cvParam cvRef="MS" accession="MS:1000253" name="electron multiplier" value=""/> + <cvParam cvRef="MS" accession="MS:1000120" name="transient recorder" value=""/> + </detector> + </componentList> + <softwareRef ref="Xcalibur"/> + </instrumentConfiguration> + </instrumentConfigurationList> + <dataProcessingList count="2"> + <dataProcessing id="XcaliburProcessing"> + <processingMethod order="1" softwareRef="Xcalibur"> + <cvParam cvRef="MS" accession="MS:1000594" name="low intensity data point removal" value=""/> + </processingMethod> + </dataProcessing> + <dataProcessing id="TMCConversion"> + <processingMethod order="2" softwareRef="TMC"> + <cvParam cvRef="MS" accession="MS:1000544" name="Conversion to mzML" value=""/> + </processingMethod> + </dataProcessing> + </dataProcessingList> + <run defaultInstrumentConfigurationRef="LTQFTUltra0" defaultSourceFileRef="sf1" id="Experiment01" sampleRef="sample1" startTimeStamp="2009-08-11T15:59:44"> + <spectrumList count="9" defaultDataProcessingRef="XcaliburProcessing"> + <spectrum id="Scan=1" defaultArrayLength="0" index="0"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="1"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="1"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="33612"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=2" defaultArrayLength="0" index="1"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="2"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="1"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="67208"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=3" defaultArrayLength="0" index="2"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="3"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="1"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="100804"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=4" defaultArrayLength="0" index="3"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="1"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="2"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="134400"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=5" defaultArrayLength="0" index="4"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="2"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="2"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="167996"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=6" defaultArrayLength="0" index="5"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="3"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="2"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="201592"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=7" defaultArrayLength="0" index="6"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="1"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="3"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="235188"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=8" defaultArrayLength="0" index="7"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="2"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="3"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="268784"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + <spectrum id="Scan=9" defaultArrayLength="0" index="8"> + <referenceableParamGroupRef ref="spectrum1"/> + <scanList count="1"> + <cvParam cvRef="MS" accession="MS:1000795" name="no combination" value=""/> + <scan instrumentConfigurationRef="LTQFTUltra0"> + <referenceableParamGroupRef ref="scan1"/> + <cvParam cvRef="IMS" accession="IMS:1000050" name="position x" value="3"/> + <cvParam cvRef="IMS" accession="IMS:1000051" name="position y" value="3"/> + </scan> + </scanList> + <binaryDataArrayList count="2"> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="mzArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="16"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + <binaryDataArray encodedLength="0"> + <referenceableParamGroupRef ref="intensityArray"/> + <cvParam cvRef="IMS" accession="IMS:1000103" name="external array length" value="8399"/> + <cvParam cvRef="IMS" accession="IMS:1000102" name="external offset" value="302380"/> + <cvParam cvRef="IMS" accession="IMS:1000104" name="external encoded length" value="33596"/> + <binary/> + </binaryDataArray> + </binaryDataArrayList> + </spectrum> + </spectrumList> + </run> +</mzML> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/preprocessing_results1.csv Tue Oct 31 15:05:05 2017 -0400 @@ -0,0 +1,123 @@ +"","x = 1, y = 1","x = 2, y = 1","x = 3, y = 1","x = 1, y = 2","x = 2, y = 2","x = 3, y = 2","x = 1, y = 3","x = 2, y = 3","x = 3, y = 3" +"101.083335876465",0,0,0,0,10.5201841197693,0,0,0,15.4569776178139 +"108",20.07617875815,22.0049821122004,8.11865749619098,36.2519880573707,0,32.5199124717513,0,38.7010709855951,42.7165982607613 +"109",18.1336417144298,0,0,12.340115577025,0,0,0,0,31.8472133362366 +"115.083335876465",0,47.5589863041861,38.6206441308393,21.5985975620084,49.8455125548913,34.0082516841414,58.5695832500731,35.1063796057111,10.5851479563803 +"121.75",0,9.31845224426211,11.2199792773521,0,0,0,0,0,0 +"123",7.3974288388258,0,0,0,0,0,11.1433827631564,0,0 +"125.083335876465",9.88786777821013,0,0,0,0,11.2688697931818,0,0,0 +"129",47.4939861093513,25.1174911966954,0,15.7564454333027,12.2412319264799,44.0327113861764,20.2349044832849,0,0 +"137.08332824707",0,0,0,0,0,16.6179291475739,25.3179832874599,0,0 +"138.16667175293",0,16.0212271269218,0,0,0,35.9203012020489,0,0,0 +"142.16667175293",0,0,0,0,0,0,0,17.7570643885508,10.9482250254199 +"143.16667175293",63.9557992578818,0,22.1209255022697,8.71179204784011,28.0826861486797,12.3018065597297,19.3524230643506,9.54869091944199,12.7470032375942 +"145.08332824707",8.10821079210201,0,0,0,0,0,14.070018366376,18.0936739259341,0 +"151.08332824707",14.5089877009762,0,0,8.88238573708973,0,0,0,0,0 +"152",103.322060362343,50.4167898885366,64.966360477709,123.132259855943,49.354951197628,42.1298898793367,48.875917508607,82.7520715688586,95.1679718541509 +"153",137.365981659264,143.496828752181,134.438099043539,166.400712558746,51.0018254659615,98.0255155692513,97.2865021827647,132.775707232094,232.155490678329 +"154.08332824707",0,0,11.0312334359947,14.520642947291,0,0,16.1699788126344,0,21.86046288921 +"157.16667175293",77.3820540399515,75.6620071246846,47.1340560599237,23.7777589359186,42.4383012885405,59.2621926159221,31.0414546685141,52.882542372861,22.4726165358334 +"158",0,0,0,14.0185824287435,0,0,10.4248512528573,0,0 +"166.16667175293",0,0,13.8445487526048,0,0,0,12.1342637272721,0,0 +"169.25",0,8.62609598407419,8.36816913493385,0,0,0,0,0,7.50034502881655 +"171.16667175293",65.5802303152742,76.6925373996255,80.7851958138273,20.504483466493,98.4925697639634,79.7327792869345,69.9153561273411,71.7669246171163,38.9228272539223 +"172",11.7718556007104,8.65517008240033,0,0,12.3447514382697,0,0,0,0 +"173.16667175293",19.8001139390128,9.24202352948117,0,0,0,0,12.9339587326243,0,0 +"178.91667175293",0,0,0,0,18.4968749320831,13.0626749764934,14.9639347833441,0,0 +"180.75",15.5390990624707,0,0,0,0,12.162411417447,0,0,0 +"185.16667175293",0,21.9432124736261,0,14.8582336612475,29.1821968120111,0,26.435424246851,8.52686620682676,0 +"187.083343505859",0,0,0,15.7725890201716,0,0,0,12.1131757097935,0 +"199.25",41.9778402893817,19.166417065584,17.6444052034102,0,16.67616550737,0,26.5629734336243,8.47793913357857,11.6417372603496 +"204",22.3312407113791,0,0,0,0,0,13.1892645275551,0,0 +"227.25",28.0444393342333,0,0,0,38.7235219637704,53.0967857394387,50.6392668168148,0,0 +"241.25",0,0,0,29.5270047025679,21.2024776153512,0,23.1685747242903,0,0 +"255.25",93.5757574867183,30.6832013540246,49.2676306551834,47.0939012272609,42.0391689166893,69.3610274592297,74.8816445913071,82.5792056202001,0 +"256.083343505859",0,0,0,0,0,27.715411184552,20.3121561993016,0,0 +"289",0,0,0,28.0543987283307,0,21.6416708218486,0,0,0 +"329",153.474978311479,60.1421543147965,56.0879890953574,86.7698248228617,79.1004568935238,51.6573454566485,35.5453461685814,51.0404324857185,47.0075618489852 +"343.916687011719",0,31.0187979304894,0,30.778391604362,0,0,0,0,0 +"345",50.0088795301201,52.2106026011905,39.8397744997308,0,0,43.9701504217444,35.6107743532239,27.4839522412165,39.509260942207 +"415.916687011719",31.4139491977951,0,0,0,0,0,14.9195164525775,0,0 +"442.916687011719",0,27.2250854409666,0,0,0,0,0,10.6943827979274,0 +"451.666687011719",0,0,0,0,0,15.3071333449902,11.3594655365553,0,0 +"454.916687011719",0,0,9.61129134412043,0,0,0,0,0,6.86289224416399 +"465",0,14.9282414084656,0,0,0,0,0,0,11.1498584980523 +"470.583343505859",0,0,0,0,14.9024601819435,11.1495877909341,0,0,0 +"480.916687011719",0,12.9251691973724,0,0,0,0,0,8.66991363641759,0 +"481.75",0,0,0,12.2941712107338,15.7099717766283,0,0,0,0 +"484.166687011719",0,0,0,0,0,11.1466771111534,0,0,10.2761438838682 +"497.166687011719",12.6597529359588,12.2352791021574,8.79541969296352,0,0,0,13.1802343248077,0,0 +"498.25",10.1003627252829,10.9371256305375,19.4352931833554,0,0,0,11.4230290584633,15.2630467439158,6.81748985639346 +"498.916687011719",16.2715690297746,0,10.7826775349313,15.0878353410761,0,0,0,11.9233376362991,0 +"503.833343505859",0,9.18995475568255,0,21.951523703233,15.0793355779159,0,0,0,0 +"508.75",0,9.17209080213029,0,0,0,0,0,14.0750436316148,0 +"516.666687011719",0,0,11.2642202675511,0,16.4464327577442,0,0,11.4457368821292,0 +"519.833374023438",13.9915439476783,0,0,0,0,0,0,0,9.24458087166686 +"520.666687011719",12.955248125299,16.5679450783091,10.9885858279283,0,0,0,0,24.7764540483737,0 +"527.75",0,0,0,0,11.5701795491244,0,10.5496609997492,8.64804426953924,0 +"535.416687011719",0,0,0,8.40091380895448,0,12.2209638216117,0,14.1280546421264,0 +"536.666687011719",9.96339394177859,0,0,16.0306852924685,24.7073714279359,0,0,14.3583807175616,0 +"537.833374023438",0,21.4339967287144,0,0,0,0,25.0980198516476,0,0 +"546.5",0,14.901774884296,0,0,14.8531264408503,0,0,0,0 +"549.5",10.8345596012497,14.2199957216164,0,10.0524432664412,0,0,0,0,8.72485403750767 +"550.666687011719",18.654085472428,0,0,0,0,0,0,0,9.78587007748098 +"552.75",0,14.3799363954255,0,11.7160857122371,0,0,0,0,0 +"556.416687011719",0,0,8.84395536676642,0,0,0,0,0,6.8510083209856 +"557.083374023438",0,0,0,7.83108819111983,0,0,24.699355783064,0,0 +"560.583374023438",0,0,12.3755916558543,0,0,0,0,0,10.8530586373655 +"566.75",0,0,0,0,12.4352959240684,21.7979582441614,0,0,16.4175982771249 +"576.833374023438",16.3361307875587,8.41621232334472,0,0,0,0,0,0,0 +"578.75",0,0,0,0,0,11.2854274292655,24.9518836513822,0,11.2807763682073 +"581.5",0,0,16.5139681588782,0,0,22.7016178894143,0,0,0 +"582.333374023438",0,0,10.3689015548015,0,0,0,0,8.67946707091323,0 +"589.583374023438",0,0,8.22428883293879,0,0,0,0,0,8.32105697598186 +"594.583374023438",0,11.2202718992423,8.90636123248629,0,0,0,0,0,0 +"604.916687011719",0,0,0,0,26.6882080639079,0,13.2273045660785,0,0 +"607.416687011719",0,0,0,0,15.0429449176872,13.1086809452342,0,0,0 +"612.416687011719",13.739464222233,0,8.18906557794953,0,0,0,0,0,0 +"617.166687011719",0,8.7359182657498,8.26563913875528,0,0,0,0,0,0 +"618.75",0,0,11.2466311542235,8.34161258236447,0,0,0,0,0 +"619.333374023438",0,0,13.1652301740219,0,0,0,0,0,12.7290307032323 +"619.833374023438",0,9.74392480329601,0,0,9.72994061921298,0,0,0,0 +"628.166687011719",0,0,0,0,0,0,14.7327117881372,0,7.04627948009046 +"630.75",0,0,0,0,17.6934169915647,0,12.1565412446004,8.65043826739016,0 +"641.166687011719",0,0,0,11.404058966079,0,0,0,0,6.50471926515938 +"642.083374023438",0,0,0,8.33308042404959,0,17.583286171746,0,0,0 +"643",0,9.10698486822577,0,28.8070174884301,0,0,0,0,0 +"656.083374023438",0,9.94614600519911,0,0,0,24.8024075683329,0,0,7.34499367017789 +"659.25",0,9.30456858804271,0,0,0,0,0,8.54845221056384,0 +"663.666687011719",0,0,19.8654954744782,0,0,0,0,10.6456522673309,0 +"665.25",0,9.93889147886332,0,0,20.6584245431942,0,0,10.0311376093943,0 +"670.25",0,0,15.342900454968,8.83745839078934,0,0,0,0,0 +"672.25",0,9.82358185747773,0,0,0,0,22.8393809718956,0,0 +"674.166687011719",11.8072065924156,0,10.5824782376121,0,0,0,0,25.2621535095534,0 +"677.333374023438",0,0,0,0,0,16.5567630132664,12.2035402531762,0,0 +"679.25",0,0,0,24.8099401818521,0,0,22.4152384772809,0,0 +"680.833374023438",0,0,0,0,0,0,13.0282406776041,30.6570029277553,0 +"681.333374023438",0,0,0,0,12.7645346781143,0,0,0,7.39939732786528 +"684.75",0,0,0,14.2005656593441,15.9800657946999,0,0,0,0 +"686.5",0,11.6015327526756,14.6091487671313,0,14.6728173352429,0,20.3671453548551,0,0 +"691.333374023438",0,14.8603332884198,0,0,0,16.7350000502272,13.7867754247146,0,0 +"695.583374023438",0,0,9.0587067861793,0,0,0,10.5006444428227,0,13.4272171615947 +"697.416687011719",0,0,14.9552721118203,0,0,13.4409390214589,0,0,0 +"699",0,0,8.9442704359147,0,0,34.1933067348988,0,0,0 +"710.083374023438",0,0,0,0,0,18.928474374376,0,0,8.14003463485373 +"711.5",0,24.5776630090051,11.7752041052326,0,0,0,15.0801694540814,15.2167320083229,0 +"712.416687011719",0,0,15.4000206949755,0,0,0,0,10.91489738912,0 +"716.25",0,0,8.96975456188132,0,12.2866390806616,0,28.5924146032904,0,0 +"722.166687011719",0,8.53999613145973,0,12.3479944362981,22.3248700971267,0,0,0,0 +"723.333374023438",17.2466691285218,0,10.2524061876993,0,0,18.4910857234876,0,0,0 +"727.833374023438",0,0,0,0,14.123685609061,0,0,18.2674856423875,0 +"732.166687011719",0,0,0,31.2331518166603,0,20.5747977236884,12.3074624948681,0,0 +"735.25",0,0,0,0,24.0880560228694,10.1799331414451,0,0,0 +"737.916687011719",0,0,0,0,17.614609169837,0,0,14.206298502372,0 +"749.75",0,0,0,10.172321270351,0,0,0,0,7.31787835515969 +"753.583374023438",0,0,0,11.3040737194351,10.1276449824797,0,0,12.5939743245233,10.1369399631126 +"755.5",0,0,0,0,9.9314480830486,0,0,10.9272352284574,10.1330976654512 +"767.083374023438",0,0,13.9210330916181,0,13.2246584565215,17.5988176435375,0,0,0 +"769.083374023438",0,0,8.96378499869,0,11.5978091532044,15.5250066686332,0,0,8.1310660109765 +"781.333374023438",0,0,13.0553113831782,9.55569640851565,0,0,26.8789048226066,0,0 +"784.75",0,0,13.7793350136159,0,21.0723263072061,0,0,0,0 +"786.416687011719",0,0,0,8.38274678796621,0,0,0,9.25046719173861,0 +"789.916687011719",0,0,0,0,0,18.4801633969761,0,18.7702446473026,0 +"794.75",0,0,0,11.1793680610551,0,0,12.3644119165714,0,0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/preprocessing_results2.csv Tue Oct 31 15:05:05 2017 -0400 @@ -0,0 +1,4245 @@ +"","x = 1, y = 1","x = 2, y = 1","x = 3, y = 1","x = 4, y = 1","x = 5, y = 1","x = 6, y = 1","x = 7, y = 1","x = 8, y = 1","x = 9, y = 1","x = 10, y = 1","x = 11, y = 1","x = 12, y = 1","x = 13, y = 1","x = 14, y = 1","x = 15, y = 1","x = 16, y = 1","x = 17, y = 1","x = 1, y = 2","x = 2, y = 2","x = 3, y = 2","x = 4, y = 2","x = 5, y = 2","x = 6, y = 2","x = 7, y = 2","x = 8, y = 2","x = 9, y = 2","x = 10, y = 2","x = 11, y = 2","x = 12, y = 2","x = 13, y = 2","x = 14, y = 2","x = 15, y = 2","x = 16, y = 2","x = 17, y = 2","x = 1, y = 3","x = 2, y = 3","x = 3, y = 3","x = 4, y = 3","x = 5, y = 3","x = 6, y = 3","x = 7, y = 3","x = 8, y = 3","x = 9, y = 3","x = 10, y = 3","x = 11, y = 3","x = 12, y = 3","x = 13, y = 3","x = 14, y = 3","x = 15, y = 3","x = 16, y = 3","x = 17, y = 3","x = 1, y = 4","x = 2, y = 4","x = 3, y = 4","x = 4, y = 4","x = 5, y = 4","x = 6, y = 4","x = 7, y = 4","x = 8, y = 4","x = 9, y = 4","x = 10, y = 4","x = 11, y = 4","x = 12, y = 4","x = 13, y = 4","x = 14, y = 4","x = 15, y = 4","x = 16, y = 4","x = 17, y = 4" +"799.642578125",0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,9,0,0,0,0,5,5,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,7,0,4,8.00131578947368,9,0,0,0,6.00128040973111,7.00022373867323,4.00038013177902,0,0,0,0,0,0,7,0,0,0,0,0,0,0,6,0,0,0,0 +"799.912719726562",0,0,0,0,0,0,0,0,10,0,5,7,0,0,0,13,0,0,0,0,8,5,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,6,7.0030657748049,0,0,0,13.0012305627028,9.00152052711607,7.0020594292439,0,0,6,0,6,6,0,0,7,6,0,7,0,0,11,0,0,0 +"800.149108886719",0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,7.00921052631579,6,6.00418060200669,0,8,7.00682885189927,7.00156617071261,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,0,0,0 +"800.250427246094",0,0,0,0,0,0,0,0,11,6.01166781056966,5,10,0,0,0,6,0,0,0,0,8,4,0,6,0,0,5.00936768149883,0,0,0,8,0,0,0,0,0,0,0,6,0,9,0,0,4.00585284280936,8,0,0,9.0022373867323,6.0022807906741,7.00500147102089,0,0,4,0,6,10,0,0,5,6,0,8,0,0,0,0,0,0 +"800.453125",0,0,0,0,0,0,0,0,6,5.0178448867536,5,6,0,0,0,6,0,0,0,0,10,7,0,5,0,0,4.0152224824356,0,0,0,5,0,0,0,0,0,0,0,6,0,6,8.01513157894737,8,6.00808249721293,0,9,5.00981647460521,6.00257299474214,0,6.00676669608708,10.0190234622701,0,6,0,4,5,0,0,6,8,0,8,0,0,0,0,0,0 +"801.095092773438",0,0,0,0,0,0,0,0,11,7.0308853809197,7,8,0,0,0,10,0,0,0,0,10,10,0,8,0,0,5.02751756440281,0,0,0,11,0,0,0,0,0,0,0,6,0,9,0,9,14.0125418060201,13,10,9.0179257362356,19.0050341201477,21.0055752660922,18.0132391879965,13.0291693088142,0,8,0,6,10,0,0,7,15,0,7,0,6,16,11,0,0 +"801.399230957031",0,0,0,0,0,0,0,0,9,5.0398078242965,13,6,0,0,0,9,0,0,0,0,7,6,0,7,0,0,4.03220140515223,0,0,0,6,0,0,0,0,0,0,0,6,0,6,6.03552631578947,6,9.01560758082497,8,6,7.02347417840376,6.0060409441772,8.00734921439432,7.01500441306267,8.03170577045022,0,7,0,9,8,0,0,7,8,0,8,0,6,0,9,0,0 +"802.109191894531",0,0,0,0,0,0,0,0,9,4.04941660947152,8,9,0,0,0,11,0,0,0,0,10,9,0,0,0,0,7.04274004683841,0,0,0,10,0,0,0,0,0,0,0,0,0,6,10.05,11,15.0209030100334,17,9,6.03158344003414,12.0083902002461,15.0095032944754,14.0220653133274,12.0481927710843,0,7,0,11,0,0,0,8,9,0,10,0,7,10,0,0,0 +"802.345947265625",0,0,0,0,0,0,0,0,9,6.05422100205903,7,9,0,0,0,4,0,0,0,0,12,7,0,8,0,0,7.04742388758782,0,0,0,10,0,0,0,0,0,0,0,8,0,7,5.05592105263158,8,10.0228539576366,9,9,10.0354246692275,15.0096207629489,9.01039026862646,8.02471315092674,11.0513633481294,0,5,0,7,6,0,0,8,10,0,9,0,6,15,11,0,0 +"802.853332519531",0,0,0,0,0,0,0,0,6,6.06863417982155,9,6,0,0,0,9,0,0,0,0,9,7,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,8,0,10,5.0625,0,6.02619843924192,0,8,0,0,13.0124176381145,0,9.06150919467343,0,5,0,6,5,0,0,0,5,0,0,0,7,0,0,0,0 +"803.225463867188",0,0,0,0,0,0,0,0,10,6.07481125600549,12,11,0,0,0,11,0,0,0,0,0,9,0,0,0,0,7.06264637002342,0,0,0,14,0,0,0,0,0,0,0,8,0,12,8.07105263157895,15,32.0301003344482,20,24,40.0460947503201,29.0120818883544,51.0136847440446,42.0314798470138,32.0678503487635,0,6,0,6,5,0,0,16,25,46,26,0,27,56,102,0,0 +"804.207092285156",0,0,0,0,0,0,0,0,7,0,11,7,0,0,0,8,0,0,0,0,8,7,0,8,0,0,9.08021077283372,0,0,0,11,0,0,0,0,0,0,0,4,0,8,13.0921052631579,9,14.0381828316611,13,14,20.0588988476312,17.0154379684528,31.0174860618348,25.0403059723448,11.0862396956246,0,7,0,8,7,0,0,13,11,32,13,0,10,29,51,0,0 +"805.223205566406",0,0,0,0,0,0,0,0,10,6.11599176389842,10,9,0,0,0,12,0,0,0,0,11,7,0,10,0,0,9.09836065573771,0,0,0,10,0,0,0,0,0,0,0,6,0,12,13.1098684210526,14,9.04710144927536,12,13,10.0717029449424,14.0186821792147,16.0212873796249,20.0491320976758,11.1058972733037,0,8,0,7,10,0,0,6,10,21,14,0,10,30,32,0,0 +"805.697631835938",0,0,0,0,0,0,0,0,6,6.12422786547701,0,6,0,0,0,5,0,0,0,0,7,5,0,5,0,0,5.10538641686183,0,0,0,7,0,0,0,0,0,0,0,4,0,5,0,5,0,0,6,6.07853179684166,6.02013648059067,0,8.05266254780818,0,0,4,0,7,3,0,0,5,6,0,0,0,6,10,11,0,0 +"806.2060546875",0,0,0,0,0,0,0,0,0,5.13315030885381,8,0,0,0,0,10,0,0,0,0,10,8,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,10,0,7,6.12828947368421,10,0,8,7,8.08365343576611,0,10.0243284338571,11.0573698146514,0,0,0,0,6,7,0,0,7,11,0,10,0,7,0,11,0,0 +"806.375549316406",0,0,0,0,0,0,0,0,11,7.14070006863418,7,10,0,0,0,9,0,0,0,0,9,7,0,3,0,0,6.11533957845433,0,0,0,9,0,0,0,0,0,0,0,7,0,7,6.1328947368421,9,6.05490523968785,8,7,6.08621425522834,14.0227094753328,10.0253421186011,12.0591350397176,0,0,10,0,6,6,0,0,7,6,0,9,0,0,10,0,0,0 +"806.884216308594",0,0,0,0,0,0,0,0,11,0,11,0,0,0,0,18,0,0,0,0,8,7,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,6,0,15,10.1434210526316,10,10.0607580824972,12,0,11.0921895006402,10.0241637767088,10.0276229092752,17.0635481023831,11.136334812936,0,11,0,14,16,0,0,11,6,0,0,0,6,0,0,0,0 +"807.087707519531",0,0,0,0,0,0,0,0,10,6.15099519560741,10,13,0,0,0,14,0,0,0,0,8,6,0,6,0,0,9.13173302107728,0,0,0,7,0,0,0,0,0,0,0,6,0,7,8.14605263157895,10,7.06215161649944,9,10,0,11.0248349927285,7.02825646224024,8.06649014416005,8.14013950538998,0,0,0,10,7,0,0,6,8,0,8,0,0,12,0,0,0 +"807.39306640625",0,0,0,0,0,0,0,0,6,6.15991763898421,10,6,0,0,0,8,0,0,0,0,7,5,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,13,0,0,7.15263157894737,0,4.06438127090301,0,8,9.09859154929577,10.0259536860946,0,4.06825536922624,7.14584654407102,0,7,0,5,11,0,0,9,6,0,0,0,0,0,0,0,0 +"807.630554199219",0,0,0,0,0,0,0,0,8,3.16403568977351,8,7,0,0,0,5,0,0,0,0,6,4,0,5,0,0,5.13934426229508,0,0,0,6,0,0,0,0,0,0,0,7,0,9,0,5,0,0,0,0,0,6.02977698935631,0,0,0,4,0,9,5,0,0,5,9,0,0,0,8,13,0,0,0 +"807.902038574219",0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,12,0,0,0,0,9,6,0,0,0,0,7.14285714285714,0,0,0,5,0,0,0,0,0,0,0,6,0,6,9.1625,9,0,0,11,7.10413999146393,10.0275198568072,8.03104409528637,9.07208002353633,0,0,8,0,9,10,0,0,7,8,0,8,0,0,0,0,0,0 +"808.105651855469",0,0,0,0,0,0,0,0,9,0,0,7,0,0,0,11,0,0,0,0,9,5,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,6,0,0,0,6,6.06967670011148,0,0,0,0,0,0,9.15852885225111,0,7,0,8,0,0,0,0,0,0,7,0,7,0,0,0,0 +"808.207458496094",0,0,0,0,0,0,0,0,11,5.17638984214139,13,9,0,0,0,11,0,0,0,0,7,0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,14,6.16644736842105,6,5.07079152731327,10,7,7.10755441741357,9.02830294216355,6.03193106943741,9.07502206531333,8.16233354470514,0,6,0,7,10,0,0,6,6,0,8,0,0,0,0,0,0 +"808.954406738281",0,0,0,0,0,0,0,0,10,0,8,8,0,0,0,11,0,0,0,0,5,7,0,7,0,0,6.16042154566745,0,0,0,0,0,0,0,0,0,0,0,7,0,11,0,4,6.07748049052397,0,7,7.11737089201878,11.0310996755789,7.03497212366954,9.08120035304501,0,0,7,0,10,6,0,0,7,0,0,8,0,0,0,0,0,0 +"809.192138671875",0,0,0,0,0,0,0,0,10,8.19286204529856,8,8,0,0,0,10,0,0,0,0,12,10,0,8,0,0,6.16627634660422,0,0,0,10,0,0,0,0,0,0,0,6,0,13,9.1875,9,5.07943143812709,0,7,6.1195049082373,11.0317708915986,0,6.08414239482201,7.17945466074826,0,5,0,7,9,0,0,5,5,0,0,0,0,0,0,0,0 +"809.667724609375",0,0,0,0,0,0,0,0,7,3.20590253946465,6,7,0,0,0,5,0,0,0,0,6,5,0,0,0,0,4.17564402810304,0,0,0,5,0,0,0,0,0,0,0,4,0,5,5.1953947368421,7,6.08333333333333,0,0,5.12548015364917,6.03288958496476,6.03737962493664,0,0,0,5,0,3,7,0,0,6,0,0,0,0,6,0,0,0,0 +"810.245361328125",0,0,0,0,0,0,0,0,8,5.21825669183253,9,11,0,0,0,0,0,0,0,0,8,8,0,9,0,0,5.18384074941452,0,0,0,5,0,0,0,0,0,0,0,7,0,5,4.20526315789474,4,8.08835005574136,0,8,0,9.03501510236044,6.04029396857577,8.09208590761989,8.2003804692454,0,9,0,7,6,0,0,6,9,0,7,0,0,0,0,0,0 +"810.449279785156",0,0,0,0,0,0,0,0,7,4.22031571722718,6,8,0,0,0,9,0,0,0,0,8,6,0,4,0,0,6.18852459016393,0,0,0,9,0,0,0,0,0,0,0,7,0,5,0,6,5.0891861761427,8,0,9.13529662825438,0,5.0408008109478,6.09443954104148,7.20418516169943,0,0,0,5,5,0,0,6,8,0,0,0,0,0,0,0,0 +"810.653259277344",0,0,0,0,0,0,0,0,4,0,6,7,0,0,0,6,0,0,0,0,4,6,0,4,0,0,4.19145199063232,0,0,0,4,0,0,0,0,0,0,0,9,0,5,10.2138157894737,5,0,9,8,5.13956466069142,8.03613379572659,0,0,8.20862396956246,0,6,0,7,5,0,0,6,6,0,0,0,6,0,0,0,0 +"811.435363769531",0,0,0,0,0,0,0,0,9,3.24159231297186,6,5,0,0,0,4,0,0,0,0,0,8,0,8,0,0,7.20608899297424,0,0,0,20,0,0,0,0,0,0,0,6,0,6,7.23092105263158,22,20.0978260869565,20,26,26.1493811352966,29.0391542678152,30.044475418145,9.10326566637246,42.2219403931516,0,3,0,7,0,0,0,20,16,34,10,0,12,13,14,0,0 +"812.421936035156",0,0,0,0,0,0,0,0,8,0,7,6,0,0,0,4,0,0,0,0,7,6,0,9,0,0,5.22248243559719,0,0,0,15,0,0,0,0,0,0,0,5,0,6,6.24868421052632,13,11.1053511705686,10,14,14.1621852326078,17.042398478577,15.0480233147491,7.11120917917034,24.2403297400127,0,10,0,6,8,0,0,9,10,20,10,0,0,11,0,0,0 +"813.204895019531",0,0,0,0,0,0,0,0,12,0,13,15,0,0,0,11,0,0,0,0,9,8,0,8,0,0,8.2347775175644,0,0,0,12,0,0,0,0,0,0,0,9,0,9,0,9,0,10,9,7.17114810072557,10.0448596039825,0,0,8.25491439441979,0,6,0,6,10,0,0,12,6,0,9,0,6,10,0,0,0 +"813.375122070312",0,0,0,0,0,0,0,0,12,9.27659574468085,0,6,0,0,0,7,0,0,0,0,7,8,0,8,0,0,5.23770491803279,0,0,0,10,0,0,0,0,0,0,0,7,0,9,6.26578947368421,9,5.11343366778149,8,6,5.17541613316261,9.04553082000224,9.05169792194627,9.11974110032362,10.2587190868738,0,6,0,5,7,0,0,9,5,0,0,0,6,11,0,0,0 +"814.2607421875",0,0,0,0,0,0,0,0,17,0,10,9,0,0,0,0,0,0,0,0,0,7,0,8,0,0,6.25351288056206,0,0,0,0,0,0,0,0,0,0,0,8,0,12,0,0,7.1201226309922,9,7,0,0,8.05486568677141,0,0,0,6,0,8,0,0,0,8,7,0,9,0,0,0,0,0,0 +"814.397033691406",0,0,0,0,0,0,0,0,6,4.29993136582018,7,5,0,0,0,10,0,0,0,0,9,6,0,4,0,0,7.25702576112412,0,0,0,10,0,0,0,0,0,0,0,4,0,6,5.2875,4,8.12179487179487,9,8,5.18565941101152,7.04888690010068,6.05562595032945,5.1282730214769,0,0,4,0,9,9,0,0,6,5,0,7,0,0,0,0,0,0 +"815.112731933594",0,0,0,0,0,0,0,0,12,0,7,9,0,0,0,11,0,0,0,0,7,9,0,7,0,0,8.26580796252927,0,0,0,6,0,0,0,0,0,0,0,7,0,0,7.3,7,6.12848383500557,9,6,6.19547588561673,6.05145989484282,4.05752660922453,6.13503971756399,7.28852251109702,0,9,0,5,7,0,0,8,7,0,0,0,0,0,0,0,0 +"815.351318359375",0,0,0,0,0,0,0,0,6,9.31708991077557,6,5,0,0,0,8,0,0,0,0,7,5,0,4,0,0,5.27107728337237,0,0,0,5,0,0,0,0,0,0,0,7,0,9,7.30526315789474,7,4.12931995540691,9,7,7.19846350832266,6.05213111086251,5.05892042574759,5.13621653427479,0,0,4,0,8,7,0,0,5,6,0,0,0,9,12,0,0,0 +"816.169799804688",0,0,0,0,0,0,0,0,0,0,10,8,0,0,0,6,0,0,0,0,6,6,0,5,0,0,5.28629976580796,0,0,0,6,0,0,0,0,0,0,0,9,0,0,8.32171052631579,9,0,0,6,6.20742637644046,10.0544803669314,0,8.14298323036187,8.30754597336715,0,8,0,8,7,0,0,9,0,0,0,0,0,0,0,0,0 +"816.374450683594",0,0,0,0,0,0,0,0,8,5.33836650652025,8,6,0,0,0,0,0,0,0,0,6,0,0,5,0,0,6.28981264637002,0,0,0,5,0,0,0,0,0,0,0,8,0,8,6.32631578947368,7,5.1371237458194,8,6,6.2108408023901,0,0,6.14504265960577,0,0,5,0,6,6,0,0,7,10,0,0,0,0,0,0,0,0 +"816.545043945312",0,0,0,0,0,0,0,0,5,5.34248455730954,5,6,0,0,0,6,0,0,0,0,5,8,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,9,0,0,5.33092105263158,3,7.13935340022297,0,6,0,7.05571092963419,5.06348200709579,4.14651368049426,0,0,5,0,6,8,0,0,6,0,0,0,0,0,0,0,0,0 +"817.091003417969",0,0,0,0,0,0,0,0,9,4.3541523678792,10,15,0,0,0,10,0,0,0,0,7,13,0,9,0,0,10.3021077283372,0,0,0,7,0,0,0,0,0,0,0,7,0,9,6.34210526315789,9,8.14464882943144,11,6,6.22065727699531,9.05761270835664,11.0656360871769,5.15298617240365,11.3259353202283,0,8,0,6,9,0,0,9,7,0,9,0,7,0,0,0,0 +"817.466491699219",0,0,0,0,0,0,0,0,9,4.36101578586136,7,9,0,0,0,9,0,0,0,0,9,9,0,5,0,0,9.30913348946136,0,0,0,17,0,0,0,0,0,0,0,6,0,7,6.34868421052632,16,31.146878483835,101,69,47.2253521126761,35.0590670097326,28.0670299037,20.1553398058252,78.3341788205453,0,4,0,5,8,0,0,32,60,133,28,0,25,63,23,0,0 +"818.490905761719",0,0,0,0,0,0,0,0,6,4.38091969800961,10,9,0,0,0,9,0,0,0,0,7,6,0,5,0,0,5.32669789227166,0,0,0,5,0,0,0,0,0,0,0,11,0,4,5.36907894736842,15,12.1555183946488,44,40,24.2373026034998,19.0621993511578,19.0705778003041,12.1632833186231,46.3532022828155,0,6,0,0,8,0,0,21,28,61,21,0,12,27,15,0,0 +"819.242614746094",0,0,0,0,0,0,0,0,10,6.398078242965,0,7,0,0,0,8,0,0,0,0,9,6,0,6,0,0,7.33899297423888,0,0,0,7,0,0,0,0,0,0,0,5,0,7,8.3796052631579,6,8.16137123745819,11,9,6.24583866837388,9.06521982324645,11.0732387227572,6.17063842306561,0,0,7,0,8,8,0,0,8,6,0,9,0,6,0,0,0,0 +"819.481811523438",0,0,0,0,0,0,0,0,7,3.40082361015786,11,8,0,0,0,7,0,0,0,0,5,7,0,6,0,0,3.34426229508197,0,0,0,9,0,0,0,0,0,0,0,8,0,7,4.38486842105263,6,9.16276477146042,20,16,16.2501067008109,9.06577916992952,10.0742524075013,7.1724036481318,12.3728598604946,0,8,0,5,6,0,0,7,8,20,0,0,10,14,9,0,0 +"819.96044921875",0,0,0,0,0,0,0,0,5,0,0,8,0,0,0,0,0,0,0,0,4,5,0,8,0,0,5.34894613583138,0,0,0,9,0,0,0,0,0,0,0,8,0,6,7.39473684210526,7,7.167502787068,9,0,7.2565087494665,0,0,0,0,0,7,0,9,5,0,0,8,10,0,8,0,0,0,0,0,0 +"820.165588378906",0,0,0,0,0,0,0,0,8,7.4159231297186,12,11,0,0,0,8,0,0,0,0,7,9,0,7,0,0,5.3559718969555,0,0,0,7,0,0,0,0,0,0,0,8,0,7,0,7,4.16973244147157,9,7,0,9.06779281798859,6.07665990876837,10.1788761400412,0,0,4,0,6,6,0,0,8,7,0,0,0,0,0,0,0,0 +"820.404968261719",0,0,0,0,0,0,0,0,7,0,9,7,0,0,0,9,0,0,0,0,8,0,0,5,0,0,4.35772833723653,0,0,0,5,0,0,0,0,0,0,0,6,0,6,8.40131578947368,4,5.1711259754738,0,10,5.25992317541613,6.06879964201812,8.07742017232641,0,9.38998097653773,0,6,0,6,5,0,0,6,7,0,7,0,0,0,10,0,0 +"820.644348144531",0,0,0,0,0,0,0,0,7,0,5,5,0,0,0,7,0,0,0,0,3,10,0,7,0,0,5.36416861826698,0,0,0,4,0,0,0,0,0,0,0,5,0,4,5.40855263157895,3,0,0,7,5.26504481434059,0,6.07906741003548,7.18240659017358,0,0,6,0,6,6,0,0,5,6,0,0,0,6,10,0,0,0 +"821.020629882812",0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,7,0,0,0,0,11,4,0,6,0,0,5.36709601873536,0,0,0,8,0,0,0,0,0,0,0,6,0,5,8.41513157894737,8,11.1758639910814,12,7,7.26931284677764,13.0704776820673,8.07982767359351,14.185937040306,8.39885859226379,0,8,0,8,6,0,0,7,13,0,8,0,0,10,0,0,0 +"821.260131835938",0,0,0,0,0,0,0,0,14,7.43719972546328,7,6,0,0,0,7,0,0,0,0,5,7,0,7,0,0,0,0,0,0,6,0,0,0,0,0,0,0,7,0,11,5.42039473684211,7,8.17670011148272,11,8,0,11.0710370287504,11.0810947795236,8.18770226537217,0,0,9,0,0,6,0,0,0,6,0,7,0,7,10,0,0,0 +"821.431213378906",0,0,0,0,0,0,0,0,8,3.44200411805079,7,6,0,0,0,7,0,0,0,0,8,7,0,7,0,0,8.37587822014052,0,0,0,5,0,0,0,0,0,0,0,4,0,8,7.42434210526316,6,7.17948717948718,11,8,0,10.0719319834433,14.0817283324886,8.18976169461606,8.40646797717184,0,8,0,7,8,0,0,8,6,0,9,0,6,11,0,0,0 +"822.218505859375",0,0,0,0,0,0,0,0,8,0,8,9,0,0,0,5,0,0,0,0,13,7,0,6,0,0,8.38992974238876,0,0,0,7,0,0,0,0,0,0,0,8,0,10,9.43684210526316,7,6.18561872909699,0,10,9.284677763551,0,7.08438925494171,7.19593998234775,0,0,7,0,6,9,0,0,10,8,0,0,0,0,0,0,0,0 +"822.3896484375",0,0,0,0,0,0,0,0,7,0,10,9,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44013157894737,0,0,8,6,0,11.0750643248686,0,0,0,0,0,0,5,0,0,0,8,0,0,0,0,0,0,0,0,0 +"822.492370605469",0,0,0,0,0,0,0,0,4,6.46053534660261,9,4,0,0,0,7,0,0,0,0,6,5,0,0,0,0,4.3940281030445,0,0,0,6,0,0,0,0,0,0,0,7,0,6,4.4453947368421,7,6.18784838350056,0,6,8.28638497652582,10.0753999328784,8.08540293968576,7.19799941159164,7.42485732403297,0,9,0,5,9,0,0,6,6,0,9,0,8,11,0,0,0 +"823.040344238281",0,0,0,0,0,0,0,0,6,12.4735758407687,10,8,0,0,0,13,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10.4539473684211,15,9.19286510590858,12,13,9.2936406316688,0,7.08743030917385,0,0,0,0,0,9,0,0,0,9,12,0,9,0,0,0,0,0,0 +"823.211608886719",0,0,0,0,0,0,0,0,13,0,15,6,0,0,0,11,0,0,0,0,10,8,0,8,0,0,6.40807962529274,0,0,0,12,0,0,0,0,0,0,0,6,0,6,11.4592105263158,9,9.19425863991081,13,10,9.29662825437473,15.0776373196107,0,13.2035892909679,11.4400760938491,0,10,0,9,9,0,0,9,9,0,7,0,6,0,0,0,0 +"824.1025390625",0,0,0,0,0,0,0,0,0,5.49416609471517,8,10,0,0,0,9,0,0,0,0,0,8,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,6,0,11,9.47302631578947,12,13.2009476031215,12,6,0,0,14.091231626964,0,0,0,7,0,7,5,0,0,10,10,0,0,0,6,0,0,0,0 +"824.27392578125",0,0,0,0,0,0,0,0,11,0,7,8,0,0,0,0,0,0,0,0,16,9,0,7,0,0,9.42330210772834,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,9,0,0,10.0808815303725,0,10.2127096204766,8.45846544071021,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0 +"824.376770019531",0,0,0,0,0,0,0,0,8,4.49828414550446,6,7,0,0,0,7,0,0,0,0,9,8,0,5,0,0,4.42740046838408,0,0,0,6,0,0,0,0,0,0,0,8,0,4,12.4776315789474,10,11.2034559643255,8,9,7.30943235168587,7.08155274639221,9.09237202230107,0,8.46353836398225,0,7,0,8,11,0,0,11,6,0,9,0,0,11,0,0,0 +"824.616760253906",0,0,0,0,0,0,0,0,5,4.50514756348662,9,7,0,0,0,5,0,0,0,0,5,4,0,7,0,0,5.43208430913349,0,0,0,8,0,0,0,0,0,0,0,5,0,0,6.48421052631579,6,7.20512820512821,0,9,0,7.08233583174852,0,8.2156516622536,8.46670894102727,0,5,0,7,7,0,0,10,8,0,0,0,8,0,0,0,0 +"825.096862792969",0,0,0,0,0,0,0,0,17,7.51544269045985,18,19,0,0,0,21,0,0,0,0,13,12,0,9,0,0,14.4391100702576,0,0,0,12,0,0,0,0,0,0,0,16,0,15,11.4940789473684,25,27.2090301003344,18,20,16.3205292360222,36.0839020024611,18.0949062341612,17.2203589290968,13.4755865567533,0,8,0,11,12,0,0,15,11,0,0,0,9,11,0,0,0 +"825.371276855469",0,0,0,0,0,0,0,0,11,5.52093342484557,17,10,0,0,0,10,0,0,0,0,7,11,0,9,0,0,8.44379391100703,0,0,0,6,0,0,0,0,0,0,0,9,0,10,9.49802631578947,11,9.21125975473802,0,0,6.32522407170294,13.084796957154,6.09579320831222,9.22271256251839,10.4793912492074,0,9,0,9,10,0,0,8,12,0,0,0,7,11,0,0,0 +"826.126098632812",0,0,0,0,0,0,0,0,10,6.5353466026081,11,13,0,0,0,9,0,0,0,0,7,10,0,9,0,0,11.4555035128806,0,0,0,13,0,0,0,0,0,0,0,7,0,8,8.5125,0,12.2173913043478,11,7,11.3329065300896,21.087146213223,11.0987075519513,13.2294792586055,12.4946100190235,0,9,0,12,10,0,0,10,7,0,0,0,0,11,0,0,0 +"826.331970214844",0,0,0,0,0,0,0,0,9,4.54083733699382,6,10,0,0,0,5,0,0,0,0,7,7,0,9,0,0,6.45901639344262,0,0,0,8,0,0,0,0,0,0,0,9,0,8,7.51578947368421,15,7.21850613154961,0,8,7.33418693982074,8.08781742924264,9.09959452610238,12.2318328920271,0,0,8,0,8,10,0,0,7,7,0,0,0,7,0,0,0,0 +"827.087219238281",0,0,0,0,0,0,0,0,8,3.5531914893617,12.003941318152,8,0,0,0,10,0,0,0,0,0,0,0,3,0,0,8.47131147540984,0,0,0,7,0,0,0,0,0,0,0,7,0,8,8.52960526315789,5,7.22547380156076,8,0,7.34571062740077,10.0903904239848,0,10.2383053839365,7.51236525047559,0,6,0,6,7,0,0,7,8,0,0,0,0,0,0,0,0 +"827.293273925781",0,0,0,0,0,0,0,0,8,7.55868222374743,9.00459820451062,8,0,0,0,9,0,0,0,0,9,8,0,6,0,0,8.4748243559719,0,0,0,5,0,0,0,0,0,0,0,9,0,9,5.53618421052632,7,12.2279821627648,9,14,8.348271446863,10.0911735093411,11.1031424227065,10.2397764048249,6.51870640456563,0,4,0,8,9,0,0,4,10,0,7,0,0,0,0,0,0 +"827.602416992188",0,0,0,0,0,0,0,0,4,3.56348661633493,5.00678782570615,8,0,0,0,7,0,0,0,0,5,8,0,6,0,0,8.48185011709602,0,0,0,6,0,0,0,0,0,0,0,5,0,6,0,4,8.22993311036789,11,6,6.35040546308152,6.09229220270724,5.1045362392296,5.24213003824654,7.52251109701966,0,6,0,7,15,0,0,5,8,0,0,0,6,0,0,0,0 +"828.255126953125",0,0,0,0,0,0,0,0,7,7.57858613589568,10.0109481059777,7,0,0,0,6,0,0,0,0,10,4,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,7,0,6,0,8,6.23383500557414,0,11,6.35979513444302,7.0943058507663,8.1068170299037,6.24654310091203,0,0,6,0,8,10,0,0,8,6,0,0,0,7,0,0,0,0 +"828.530090332031",0,0,0,0,0,0,0,0,6,6.58064516129032,6.0131377271732,6,0,0,0,5,0,0,0,0,6,5,0,5,0,0,6.49882903981265,0,0,0,9,0,0,0,0,0,0,0,5,0,4,6.55921052631579,6,6.23745819397993,8,0,0,0,6.10745058286873,5.25007355104442,6.54026632847178,0,3,0,4,6,0,0,4,0,0,0,0,6,0,9,0,0 +"828.873779296875",0,0,0,0,0,0,0,0,6,4.59162663006177,0,12,0,0,0,14,0,0,0,0,9,7,0,5,0,0,5.50468384074941,0,0,0,10,0,0,0,0,0,0,0,6,0,11,11.5664473684211,0,9.24024526198439,10,7,9.36833119931712,9.09620762948876,12.1089711099848,9.25301559282142,13.5453392517438,0,9,0,10,15,0,0,8,9,0,7,0,0,0,0,0,0 +"829.251953125",0,0,0,0,0,0,0,0,12,5.59574468085106,10.0179548938034,10,0,0,0,11,0,0,0,0,9,7,0,13,0,0,4.51053864168618,0,0,0,9,0,0,0,0,0,0,0,7,0,8,10.5717105263158,7,4.24275362318841,8,7,8.37174562526675,8.09732632285491,7.11011150532184,5.25654604295381,10.5523145212429,0,9,0,10,11,0,0,7,5,0,10,0,0,12,11,0,0 +"829.561401367188",0,0,0,0,0,0,0,0,8,4.60398078242965,5.01904970440114,7,0,0,0,5,0,0,0,0,6,7,0,4,0,0,3.51346604215457,0,0,0,0,0,0,0,0,0,0,0,3,0,7,4.57960526315789,5,7.24526198439242,0,10,6.37430644472898,0,6.11163203243791,5.25889967637541,0,0,5,0,6,5,0,0,7,5,0,0,0,6,0,0,0,0 +"829.939758300781",0,0,0,0,0,0,0,0,0,3.61153054221002,12.0218962119553,8,0,0,0,8,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,7,7.5875,10,0,8,0,0,0,0,0,0,0,5,0,8,6,0,0,7,7,0,0,0,0,0,0,0,0 +"830.111755371094",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,6.58947368421053,6,0,0,0,0,6.09989931759705,0,6.2630185348632,0,0,4,0,7,0,0,0,11,0,0,0,0,0,0,0,0,0 +"830.214904785156",0,0,0,0,0,0,0,0,7,7.61908030199039,9.02320998467265,7,0,0,0,10,0,0,0,0,10,5,0,7,0,0,5.52634660421546,0,0,0,9,0,0,0,0,0,0,0,7,0,6,5.59144736842105,6,7.24972129319955,0,0,6.38284250960307,7.10068240295335,8.113532691333,8.26448955575169,0,0,6,0,5,11,0,0,9,8,0,0,0,6,12,0,0,0 +"830.524597167969",0,0,0,0,0,0,0,0,6,2.6238846945779,8.02474271950953,8,0,0,0,5,0,0,0,0,5,0,0,5,0,0,5.5327868852459,0,0,0,5,0,0,0,0,0,0,0,5,0,4,6.6,6,0,0,7,6.38625693555271,0,7.11530663963507,6.26713739335099,6.57831325301205,0,4,0,5,8,0,0,5,5,0,7,0,0,0,0,0,0 +"830.903137207031",0,0,0,0,0,0,0,0,6,4.62800274536719,8.02846507554193,8,0,0,0,10,0,0,0,0,7,8,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,4,0,7,5.60526315789474,8,5.25641025641026,9,8,8.39351259069569,7.10269605101242,8.11619361378611,5.27007943512798,10.5821179454661,0,6,0,6,10,0,0,7,5,0,0,0,0,0,0,0,0 +"831.247314453125",0,0,0,0,0,0,0,0,13,7.63829787234043,13.0304357346179,12,0,0,0,9,0,0,0,0,7,8,0,12,0,0,9.54332552693208,0,0,0,8,0,0,0,0,0,0,0,6,0,8,7.6125,9,5.25947603121516,10,9,6.39650021340162,9.10437409106164,7.11758743030917,6.27213886437187,6.58719086873811,0,9,0,10,7,0,0,6,6,0,7,0,6,0,0,0,0 +"831.626037597656",0,0,0,0,0,0,0,0,7,4.64447494852437,7.032844317933,6,0,0,0,9,0,0,0,0,7,5,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,8,0,4,5.61907894736842,4,5.26114827201784,0,0,0,0,6.11885453623923,4.27537511032657,0,0,0,0,5,8,0,0,7,6,0,0,0,0,0,0,0,0 +"831.935974121094",0,0,0,0,0,0,0,0,7,4.65133836650652,10.034814977009,8,0,0,0,11,0,0,0,0,8,6,0,3,0,0,5.55503512880562,0,0,0,7,0,0,0,0,0,0,0,6,0,7,5.62236842105263,11,0,0,10,7.40503627827571,9.10616400044748,9.12012164216929,6.27949396881436,7.60177552314521,0,6,0,6,8,0,0,7,7,0,0,0,0,0,0,0,0 +"832.177062988281",0,0,0,0,0,0,0,0,9,0,10.036785636085,11,0,0,0,9,0,0,0,0,10,7,0,9,0,0,6.55854800936768,0,0,0,12,0,0,0,0,0,0,0,8,0,7,7.62763157894737,7,0,10,7,6.40674349125053,6.10672334713055,13.1211353269133,5.28125919388055,0,0,7,0,8,8,0,0,8,6,0,0,0,0,0,0,0,0 +"832.383728027344",0,0,0,0,0,0,0,0,11,5.65820178448867,5.03766148456317,7,0,0,0,5,0,0,0,0,10,5,0,8,0,0,4.56440281030445,0,0,0,9,0,0,0,0,0,0,0,6,0,6,4.63421052631579,5,6.26783723522854,0,6,7.40973111395647,9.10750643248686,0,8.28302441894675,6.60748256182625,0,6,0,5,6,0,0,8,6,0,0,0,0,0,0,0,0 +"833.072814941406",0,0,0,0,0,0,0,0,4,5.67124227865477,0,34,0,0,0,25,0,0,0,0,15,39,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,12,7.64539473684211,6,7.27285395763657,9,6,8.41784037558685,0,0,0,0,0,8,0,6,7,0,0,0,6,0,0,0,0,0,0,0,0 +"833.210632324219",0,0,0,0,0,0,0,0,9,0,10.0418217648347,15,0,0,0,7,0,0,0,0,15,16,0,7,0,0,6.57552693208431,0,0,0,6,0,0,0,0,0,0,0,7,0,10,0,9,0,9,10,0,10.1105269045755,8.12468322351749,9.29008531921153,0,0,8,0,6,7,0,0,6,6,0,0,0,0,0,0,0,0 +"833.451904296875",0,0,0,0,0,0,0,0,6,5.68222374742622,6.04444931026932,9,0,0,0,7,0,0,0,0,6,8,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,7,0,6,5.65263157894737,9,7.27703455964325,10,7,12.4238156209987,10.1111981205951,8.12569690826153,0,9.6290424857324,0,3,0,4,8,0,0,10,5,0,0,0,0,0,0,0,0 +"834.072509765625",0,0,0,0,0,0,0,0,7,0,9.04860959054084,24,0,0,0,8,0,0,0,0,14,15,0,8,0,0,0,0,0,0,4,0,0,0,0,0,0,0,13,0,8,0,0,0,0,7,6.4310712761417,8.11287616064437,0,0,0,0,5,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0 +"834.244934082031",0,0,0,0,0,0,0,0,0,6.69663692518874,0,0,0,0,0,4,0,0,0,0,12,9,0,0,0,0,5.59426229508197,0,0,0,8,0,0,0,0,0,0,0,8,0,7,8.66842105263158,10,0,8,0,0,6.11332363799083,0,6.29891144454251,0,0,6,0,0,8,0,0,0,10,0,0,0,0,0,0,0,0 +"834.382873535156",0,0,0,0,0,0,0,0,10,0,7.0497044011386,9,0,0,0,0,0,0,0,0,11,6,0,0,0,0,4.596018735363,0,0,0,7,0,0,0,0,0,0,0,8,0,0,0,6,0,0,7,0,0,8.12924480486569,0,0,0,6,0,6,6,0,0,6,0,0,0,0,6,0,0,0,0 +"834.486328125",0,0,0,0,0,0,0,0,9,4.70006863417982,7.05079921173637,0,0,0,0,4,0,0,0,0,7,6,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,7,8.67302631578947,6,5.28428093645485,8,6,9.43576611182245,6.11444233135698,5.12975164723771,4.29979405707561,0,0,0,0,6,3,0,0,5,8,0,0,0,0,0,0,0,0 +"834.624328613281",0,0,0,0,0,0,0,0,11,4.70487302676733,5.05189402233414,8,0,0,0,8,0,0,0,0,7,9,0,4,0,0,4.60070257611241,0,0,0,6,0,0,0,0,0,0,0,5,0,7,4.67697368421053,5,0,8,11,0,7.11511354737666,7.13051191079574,4.3027360988526,0,0,6,0,4,3,0,0,4,5,0,7,0,6,0,0,0,0 +"835.038269042969",0,0,0,0,0,0,0,0,4,0,9.05408364352967,17,0,0,0,7,0,0,0,0,5,12,0,6,0,0,8.60772833723653,0,0,0,6,0,0,0,0,0,0,0,8,0,6,4.68092105263158,7,9.28957636566332,8,0,4.44344857020913,0,7.13165230613279,0,6.6575776791376,0,6,0,7,7,0,0,5,5,0,0,0,7,0,0,0,0 +"835.245300292969",0,0,0,0,0,0,0,0,12,7.71654083733699,0,6,0,0,0,9,0,0,0,0,10,8,0,12,0,0,8.61065573770492,0,0,0,7,0,0,0,0,0,0,0,0,0,11,6.68684210526316,0,0,8,7,0,0,10.1324125696908,0,0,0,7,0,0,0,0,0,0,7,0,0,0,6,0,0,0,0 +"835.383361816406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,0,0,6.61299765807963,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,5.291248606466,0,0,4.44600938967136,0,0,8.30832597822889,8.66391883322765,0,7,0,6,5,0,0,9,0,0,0,0,6,0,0,0,0 +"835.486877441406",0,0,0,0,0,0,0,0,10,4.71997254632807,11.0562732647252,6,0,0,0,4,0,0,0,0,10,6,0,8,0,0,5.61592505854801,0,0,0,3,0,0,0,0,0,0,0,5,0,4,3.69013157894737,8,5.29403567447046,11,0,4.45027742210841,8.11735093410896,6.13329954384186,6.30920859076199,0,0,5,0,4,5,0,0,6,7,0,0,0,0,0,0,0,0 +"835.797485351562",0,0,0,0,0,0,0,0,5,5.72958133150309,8.05977665863806,8,0,0,0,7,0,0,0,0,5,4,0,8,0,0,4.6211943793911,0,0,0,7,0,0,0,0,0,0,0,8,0,4,5.69736842105263,6,6.29598662207358,9,0,0,7.11824588880188,0,5.31126802000588,8.6721623335447,0,0,0,0,5,0,0,7,5,0,0,0,7,0,0,0,0 +"836.246276855469",0,0,0,0,0,0,0,0,9,5.73575840768703,9.06196627983359,11,0,0,0,0,0,0,0,0,10,5,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,8,0,8,0,9,0,0,8,0,0,0,5.31538687849367,0,0,5,0,7,6,0,0,8,0,0,0,0,8,0,0,0,0 +"836.384399414062",0,0,0,0,0,0,0,0,9,7.74193548387097,4.06306109043136,6,0,0,0,7,0,0,0,0,10,6,0,7,0,0,4.62997658079625,0,0,0,4,0,0,0,0,0,0,0,9,0,8,6.70921052631579,6,9.30044593088071,8,6,6.45966709346991,6.12037140619756,6.13608717688799,5.31685789938217,6.68357641090678,0,5,0,6,8,0,0,6,0,0,7,0,7,0,0,0,0 +"836.729736328125",0,0,0,0,0,0,0,0,6,3.74879890185312,5.06415590102912,6,0,0,0,5,0,0,0,0,8,6,0,4,0,0,4.63700234192037,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,5.30351170568562,0,7,4.46436192915066,0,6.13760770400406,6.32038834951456,0,0,7,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"837.282470703125",0,0,0,0,0,0,0,0,10,4.75772134522992,0,10,0,0,0,0,0,0,0,0,7,7,0,7,0,0,6.64519906323185,0,0,0,4,0,0,0,0,0,0,0,6,0,10,7.72697368421053,9,4.30741360089186,0,9,9.46948356807512,6.12361561695939,0,7.32509561635775,8.7000634115409,0,5,0,5,8,0,0,4,5,0,7,0,0,0,0,0,0 +"837.48974609375",0,0,0,0,0,0,0,0,5,0,14.0691920297788,9,0,0,0,9,0,0,0,0,4,8,0,7,0,0,4.64988290398126,0,0,0,4,0,0,0,0,0,0,0,7,0,8,0,5,5.30992196209588,0,0,6.47417840375587,0,5.14052204764318,7.32774345395705,6.70386810399493,0,5,0,6,0,0,0,6,6,0,0,0,0,0,0,0,0 +"838.146362304688",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,7,5,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,7,6.74276315789474,0,0,0,0,0,10.1264123503748,0,11.3318623124448,7.71528218135701,0,0,0,6,6,0,0,0,6,0,0,0,0,0,0,0,0 +"838.28466796875",0,0,0,0,0,0,0,0,0,6.77487989018531,6.07422815852857,10,0,0,0,6,0,0,0,0,7,8,0,9,0,0,0,0,0,0,11,0,0,0,0,0,0,0,5,0,6,0,8,5.31521739130435,0,10,7.48314127187367,7.12685982772122,9.1431829700963,0,0,0,6,0,0,6,0,0,8,0,0,0,0,0,0,0,0,0 +"838.422973632812",0,0,0,0,0,0,0,0,10,0,11.0757608933654,0,0,0,0,6,0,0,0,0,5,0,0,4,0,0,6.66510538641686,0,0,0,6,0,0,0,0,0,0,0,6,0,0,9.74671052631579,5,0,0,6,0,0,0,0,0,0,6,0,4,0,0,0,6,5,0,0,0,0,0,0,0,0 +"838.561218261719",0,0,0,0,0,0,0,0,6,3.78105696636925,7.07663674184366,7,0,0,0,5,0,0,0,0,9,7,0,6,0,0,7.66803278688525,0,0,0,6,0,0,0,0,0,0,0,6,0,4,0,5,4.31688963210702,0,0,5.48698250106701,6.12719543573107,7.14432336543335,6.33509855839953,0,0,3,0,5,6,0,0,6,0,0,7,0,0,0,0,0,0 +"839.045349121094",0,0,0,0,0,0,0,0,11,7.79547014413178,0,25,0,0,0,16,0,0,0,0,21,43,0,9,0,0,11.6762295081967,0,0,0,14,0,0,0,0,0,0,0,19,0,11,8.75921052631579,30,15.3216276477146,13,0,9.49295774647887,16.1292090837901,9.14685757729346,8.33980582524272,11.7324032974001,0,15,0,9,12,0,0,6,8,0,0,0,0,0,0,0,0 +"839.46044921875",0,0,0,0,0,0,0,0,5,4.80233356211393,6.08167287059339,12,0,0,0,7,0,0,0,0,7,7,0,5,0,0,6.68384074941452,0,0,0,8,0,0,0,0,0,0,0,6,0,8,5.76907894736842,15,17.3255295429208,37,24,31.4980793854033,26.1305515158295,21.1481246832235,14.3430420711974,64.7406467977172,0,6,0,6,7,0,0,17,29,77,19,0,22,20,20,0,0 +"840.083251953125",0,0,0,0,0,0,0,0,13,0,10.0864900372236,10,0,0,0,20,0,0,0,0,12,37,0,8,0,0,10.6943793911007,0,0,0,7,0,0,0,0,0,0,0,11,0,9,8.77697368421053,16,7.32971014492754,9,8,0,8.13245329455196,6.15027876330461,0,0,0,8,0,11,5,0,0,7,10,0,8,0,6,0,0,0,0 +"840.463928222656",0,0,0,0,0,0,0,0,8,5.82155113246397,7.08802277206043,4,0,0,0,7,0,0,0,0,8,5,0,4,0,0,7.69964871194379,0,0,0,7,0,0,0,0,0,0,0,8,0,8,5.78881578947368,10,9.33333333333333,18,21,18.5104566794708,21.133907595928,27.1515458692347,6.35275080906149,21.7584020291693,0,3,0,5,4,0,0,11,15,36,13,0,13,15,10,0,0 +"841.121765136719",0,0,0,0,0,0,0,0,10,6.83390528483185,9.09262097657105,10,0,0,0,15,0,0,0,0,9,21,0,10,0,0,5.71135831381733,0,0,0,0,0,0,0,0,0,0,0,15,0,0,9.79934210526316,9,6.33835005574136,0,8,0,9.13580937465041,10.1539533705018,10.3577522800824,9.77045022194039,0,6,0,6,10,0,0,0,7,0,0,0,0,0,0,0,0 +"841.294921875",0,0,0,0,0,0,0,0,9,0,7.09393474928837,9,0,0,0,0,0,0,0,0,0,9,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,11,6.8046052631579,0,5.34002229654404,0,7,9.51899274434486,8.1364805906701,0,6.35863489261548,0,0,12,0,8,8,0,0,7,0,0,7,0,8,0,0,0,0 +"841.468078613281",0,0,0,0,0,0,0,0,9,4.83802333562114,9.09524852200569,8,0,0,0,6,0,0,0,0,8,4,0,5,0,0,4.71604215456675,0,0,0,7,0,0,0,0,0,0,0,9,0,5,3.80657894736842,9,0,12,7,5.52368758002561,9.13703993735317,9.15509376583882,9.36069432185937,10.7774254914394,0,5,0,5,6,0,0,6,10,16,0,0,8,0,0,0,0 +"841.710510253906",0,0,0,0,0,0,0,0,5,3.84557309540151,0,6,0,0,0,7,0,0,0,0,6,5,0,3,0,0,4.72306791569087,0,0,0,0,0,0,0,0,0,0,0,7,0,3,6.8125,8,6.34253065774805,0,0,0,7.13759928403625,6.15623416117587,0,0,0,4,0,4,7,0,0,5,6,0,0,0,8,0,0,0,0 +"842.056945800781",0,0,0,0,0,0,0,0,4,4.8538091969801,11.0991898401577,12,0,0,0,7,0,0,0,0,9,10,0,8,0,0,10.7277517564403,0,0,0,10,0,0,0,0,0,0,0,7,0,10,6.81973684210526,10,7.3458751393534,0,6,7.53051643192488,8.13871797740239,12.1572478459199,7.36598999705796,9.78757133798351,0,7,0,9,11,0,0,7,8,0,10,0,8,0,9,0,0 +"842.438110351562",0,0,0,0,0,0,0,0,9,3.86135895676047,9.10116049923363,8,0,0,0,4,0,0,0,0,7,4,0,7,0,0,3.73302107728337,0,0,0,0,0,0,0,0,0,0,0,7,0,5,4.82565789473684,6,6.3494983277592,10,0,6.53521126760563,8.14006040944177,5.15876837303599,5.36804942630185,7.79201014584654,0,6,0,6,10,0,0,8,10,0,0,0,7,0,0,0,0 +"843.06201171875",0,0,0,0,0,0,0,0,10,0,12.1055397416247,10,0,0,0,9,0,0,0,0,11,10,0,0,0,0,3.74297423887588,0,0,0,10,0,0,0,0,0,0,0,7,0,8,7.83618421052632,10,0,0,10,6.5416133162612,9.14207405750084,7.16066903193107,10.3733451015004,6.80405833861763,0,6,0,7,8,0,0,0,7,0,0,0,0,0,0,0,0 +"843.2353515625",0,0,0,0,0,0,0,0,7,3.87302676733013,0,0,0,0,0,8,0,0,0,0,8,0,0,8,0,0,4.74648711943794,0,0,0,9,0,0,0,0,0,0,0,7,0,7,0,7,6.35479375696767,0,10,5.54374733247973,0,8.16168271667511,0,0,0,6,0,5,0,0,0,8,0,0,0,0,0,0,0,0,0 +"843.374084472656",0,0,0,0,0,0,0,0,8,5.87851750171585,10.1064155901029,9,0,0,0,3,0,0,0,0,7,8,0,7,0,0,7.75,0,0,0,9,0,0,0,0,0,0,0,6,0,4,10.8394736842105,4,6.35758082497213,10,8,8.54716175842936,7.14308088153037,5.16231626964014,7.37599293909973,8.8142041851617,0,7,0,5,10,0,0,5,10,0,0,0,0,10,0,0,0 +"844.033020019531",0,0,0,0,0,0,0,0,6,5.89155799588195,11.1112327567331,8,0,0,0,11,0,0,0,0,9,0,0,5,0,0,4.76112412177986,0,0,0,9,0,0,0,0,0,0,0,8,0,8,0,5,8.36231884057971,9,7,5.55271020059752,11.1456538762725,8.16485048150025,13.3821712268314,9.82181357006975,0,7,0,6,6,0,0,7,10,0,11,0,6,0,0,0,0 +"844.553405761719",0,0,0,0,0,0,0,0,4,3.90185312285518,6.11473615064594,4,0,0,0,5,0,0,0,0,6,3,0,4,0,0,5.76932084309133,0,0,0,4,0,0,0,0,0,0,0,4,0,5,4.86447368421053,4,0,9,8,4.56124626547162,6.14699630831189,5.1659908768373,0,6.83195941661382,0,7,0,7,9,0,0,6,5,0,0,0,0,0,0,0,0 +"845.073974609375",0,0,0,0,0,0,0,0,12,6.91008922443377,9.11758265820013,18,0,0,0,24,0,0,0,0,8,10,0,5,0,0,18.7792740046838,0,0,0,33,0,0,0,0,0,0,0,18,0,16,19.8743421052632,37,71.3704013377926,23,39,36.5667947076398,39.1485624790245,46.1683983781044,53.3909973521624,41.8433734939759,0,11,0,18,31,0,0,31,27,36,20,0,0,27,13,0,0 +"846.080810546875",0,0,0,0,0,0,0,0,8,7.9334248455731,7.12393255966718,15,0,0,0,8,0,0,0,0,6,15,0,9,0,0,10.7944964871194,0,0,0,21,0,0,0,0,0,0,0,11,0,12,14.8934210526316,31,51.378762541806,17,20,21.5800256081946,26.1519185591229,24.1720729853016,34.3998234774934,15.862396956246,0,0,0,13,15,0,0,30,22,20,16,0,0,17,10,0,0 +"846.462890625",0,0,0,0,0,0,0,0,7,6.93754289636239,9.12612218086271,6,0,0,0,6,0,0,0,0,5,7,0,5,0,0,6.80152224824356,0,0,0,7,0,0,0,0,0,0,0,5,0,6,6.90065789473684,9,11.3821070234114,8,10,4.58429364063167,6.15314912182571,8.17359351241764,7.40188290673728,9.86873811033608,0,7,0,8,5,0,0,6,5,0,7,0,0,11,0,0,0 +"847.088317871094",0,0,0,0,0,0,0,0,13,6.94989704873027,13.1311583096124,13,0,0,0,22,0,0,0,0,11,15,0,0,0,0,9.81088992974239,0,0,0,0,0,0,0,0,0,0,0,9,0,8,11.9125,13,32.3865663322185,17,13,10.5919760990184,17.1551627698848,19.1758743030917,13.4086496028244,16.8801521876982,0,9,0,10,16,0,0,18,11,15,10,0,0,14,9,0,0 +"847.470581054688",0,0,0,0,0,0,0,0,9,6.95813315030885,8.13356689292752,9,0,0,0,5,0,0,0,0,11,6,0,7,0,0,8.81850117096019,0,0,0,10,0,0,0,0,0,0,0,5,0,8,8.91907894736842,8,9.38935340022297,31,28,19.5966709346991,9.15616959391431,12.1772681196148,9.41129744042365,26.8864933417882,0,8,0,7,9,0,0,15,12,51,11,0,0,18,10,0,0 +"848.165893554688",0,0,0,0,0,0,0,0,9,0,0,11,0,0,0,8,0,0,0,0,0,9,0,12,0,0,6.83021077283372,0,0,0,9,0,0,0,0,0,0,0,9,0,12,8.93092105263158,12,13.394370122631,9,10,11.6052069995732,15.1584069806466,7.17967562088191,9.41659311562224,6.89790741915029,0,8,0,9,8,0,0,6,8,0,8,0,0,12,0,0,0 +"848.478881835938",0,0,0,0,0,0,0,0,0,4.9780370624571,7.13860302167725,6,0,0,0,6,0,0,0,0,8,4,0,4,0,0,7.83489461358314,0,0,0,8,0,0,0,0,0,0,0,10,0,6,0,7,8.39715719063545,15,17,6.60819462227913,8.15941380467614,7.18068930562595,7.41953515739923,15.9042485732403,0,5,0,4,5,0,0,10,7,27,0,0,0,10,9,0,0 +"848.965881347656",0,0,0,0,0,0,0,0,8,5.99039121482498,10.1429822640683,12,0,0,0,8,0,0,0,0,8,5,0,7,0,0,5.84133489461358,0,0,0,4,0,0,0,0,0,0,0,6,0,8,7.94802631578947,10,0,0,0,6.61673068715322,0,0,0,0,0,6,0,8,6,0,0,4,6,0,0,0,6,0,0,0,0 +"849.209411621094",0,0,0,0,0,0,0,0,10,4.99313658201785,9.14451499890519,8,0,0,0,10,0,0,0,0,8,6,0,9,0,0,8.84718969555035,0,0,0,9,0,0,0,0,0,0,0,8,0,8,0,6,0,0,10,7.61886470337175,7.16153932207182,0,7.42659605766402,14.9169308814204,0,8,0,7,7,0,0,6,7,0,0,0,0,0,0,0,0 +"849.48779296875",0,0,0,0,0,0,0,0,4,3.99862731640357,7.14560980950296,8,0,0,0,8,0,0,0,0,10,4,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,8,0,6,5.95855263157895,5,8.40607580824972,0,10,4.62142552283397,8.16243427676474,8.18436391282311,5.42953809944101,10.9226379201015,0,0,0,7,5,0,0,7,7,0,0,0,0,0,0,0,0 +"849.835815429688",0,0,0,0,0,0,0,0,10,7,8.14714254433983,0,0,0,0,7,0,0,0,0,6,4,0,0,0,0,7.8559718969555,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,6.1636648394675,0,0,8.9283449587825,0,6,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0 +"849.940246582031",0,0,0,0,0,0,0,0,9,7,0,10,0,0,0,5,0,0,0,0,7,4,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,7,0,5,8.96776315789474,6,6.40942028985507,0,8,8.62868117797695,0,7.18613786112519,9.43218593704031,6.93278376664553,0,6,0,8,6,0,0,6,10,0,0,0,0,11,0,0,0 +"850.253540039062",0,0,0,0,0,0,0,0,6,0,9.15020801401358,7,0,0,0,5,0,0,0,0,5,12,0,10,0,0,8.86475409836066,0,0,0,5,0,0,0,0,0,0,0,6,0,11,7.96973684210526,6,8.41192865105909,0,7,0,7.16523101018011,12.1872782564622,6.4351279788173,7.93849080532657,0,5,0,8,7,0,0,7,0,0,10,0,0,10,0,0,0 +"850.532104492188",0,0,0,0,0,0,0,0,6,6,6.15217867308956,7,0,0,0,0,0,0,0,0,7,5,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,5,0,5,6.97631578947368,3,5.41332218506132,0,7,10.6342296201451,6.16579035686318,7.18829194120628,6.4368932038835,0,0,0,0,6,5,0,0,5,5,0,0,0,0,0,0,0,0 +"850.741027832031",0,0,0,0,0,0,0,0,4,6,7.15349244580688,4,0,0,0,5,0,0,0,0,5,4,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,6,7.98355263157895,0,4.41583054626533,8,7,4.63849765258216,6.16679718089272,0,8.43865842894969,0,0,4,0,5,8,0,0,0,6,0,0,0,0,0,0,0,0 +"851.019653320312",0,0,0,0,0,0,0,0,4,6,0,7,0,0,0,11,0,0,0,0,5,8,0,7,0,0,8.8788056206089,0,0,0,12,0,0,0,0,0,0,0,10,0,8,6.98684210526316,8,4.41722408026756,0,10,5.64105847204439,6.16735652757579,9.19031931069437,9.44218887908208,9.95117311350666,0,7,0,0,7,0,0,8,6,0,0,0,0,0,0,0,0 +"851.263488769531",0,0,0,0,0,0,0,0,0,0,12.1565579154806,7,0,0,0,0,0,0,0,0,7,7,0,0,0,0,6.88173302107728,0,0,0,9,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,11.9549778059607,0,5,0,8,10,0,0,6,6,0,0,0,0,0,0,0,0 +"851.367980957031",0,0,0,0,0,0,0,0,8,5,8.15765272607839,10,0,0,0,11,0,0,0,0,8,7,0,9,0,0,4.88407494145199,0,0,0,7,0,0,0,0,0,0,0,0,0,5,5.9921052631579,8,7.42028985507246,10,10,7.64319248826291,12.1689226982884,7.1909528636594,7.44307149161518,8.95814838300571,0,6,0,7,0,0,0,0,9,0,9,0,0,0,0,0,0 +"851.577026367188",0,0,0,0,0,0,0,0,6,6,0,7,0,0,0,0,0,0,0,0,4,5,0,6,0,0,4.88758782201405,0,0,0,3,0,0,0,0,0,0,0,9,0,3,4.9953947368421,7,0,0,7,7.64703371745625,8.16959391430809,10.1917131272174,0,0,0,6,0,5,7,0,0,8,9,0,9,0,11,0,0,0,0 +"851.890625",0,0,0,0,0,0,0,0,8,8,15.1607181957521,18,0,0,0,37,0,0,0,0,7,10,0,9,0,0,15.8922716627635,0,0,0,34,0,0,0,0,0,0,0,8,0,16,23,30,34.42502787068,57,30,41.6508749466496,35.1706007383376,43.1931069437405,76.4483671668138,48.9670259987318,0,10,0,11,10,0,0,33,47,52,18,0,14,37,14,0,0 +"852.51806640625",0,0,0,0,0,0,0,0,9,0,10.1646595139041,5,0,0,0,7,0,0,0,0,7,7,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,6,0,5,6,4,0,8,10,6.65727699530516,0,6.1955144450076,9.45307443365696,10.9778059606848,0,6,0,5,7,0,0,7,7,0,8,0,9,11,9,0,0 +"852.86669921875",0,0,0,0,0,0,0,0,8,6,10.1675060214583,11,0,0,0,14,0,0,0,0,7,6,0,8,0,0,14.9092505854801,0,0,0,12,0,0,0,0,0,0,0,6,0,12,12,15,22.4328316610925,22,17,11.6636790439607,23.1736212104262,19.1970349721237,23.4574874963224,17.9854153455929,0,8,0,10,0,0,0,15,19,19,10,0,11,18,0,0,0 +"853.215393066406",0,0,0,0,0,0,0,0,10,5,0,10,0,0,0,10,0,0,0,0,7,8,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,4,0,0,7,7,0,10,10,5.66666666666667,6.17507551180222,8.19830207805373,9.45925272138864,0,0,7,0,7,8,0,0,10,9,0,10,0,7,0,0,0,0 +"853.389831542969",0,0,0,0,0,0,0,0,9,5,9.16947668053427,6,0,0,0,7,0,0,0,0,7,5,0,4,0,0,9.91569086651054,0,0,0,9,0,0,0,0,0,0,0,6,0,8,5,6,9.43617614269788,8,9,4.67050789586001,8.17563485848529,9.19893563101875,6.46072374227714,8.99175649968294,0,7,0,7,8,0,0,6,5,0,7,0,0,0,0,0,0 +"853.878173828125",0,0,0,0,0,0,0,0,7,4,8.17276111232757,8,0,0,0,11,0,0,0,0,6,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,6,0,7,6,8,6.44091415830546,10,9,11.6752027315408,13.1768654211881,8.20032944754182,10.4654310091203,14,0,5,0,7,7,0,0,0,10,0,8,0,0,0,0,0,0 +"854.052673339844",0,0,0,0,0,0,0,0,7,7,0,11,0,0,0,9,0,0,0,0,8,0,0,8,0,0,7.92974238875878,0,0,0,8,0,0,0,0,0,0,0,7,0,7,8,8,9.44258639910814,10,8,7.67733674775928,8.17776037588097,7.20108971109985,7.46719623418653,9,0,8,0,6,8,0,0,8,9,0,8,0,0,0,0,0,0 +"854.36669921875",0,0,0,0,0,0,0,0,9,5,9.17670243047953,7,0,0,0,4,0,0,0,0,11,0,0,8,0,0,4.93384074941452,0,0,0,5,0,0,0,0,0,0,0,4,0,0,5,8,0,0,6,5.68032437046522,8.17831972256404,0,9.46954986760812,0,0,6,0,9,0,0,0,7,5,0,0,0,0,0,0,0,0 +"854.541198730469",0,0,0,0,0,0,0,0,6,3,6.17757827895774,6,0,0,0,8,0,0,0,0,5,7,0,8,0,0,7.93793911007026,0,0,0,5,0,0,0,0,0,0,0,8,0,8,5,6,6.44648829431438,0,6,4.68203158344003,6.17887906924712,8.20286365940193,6.47072668431892,8,0,5,0,5,10,0,0,6,5,0,0,0,6,0,0,0,0 +"855.064880371094",0,0,0,0,0,0,0,0,10,6,12.1804247865119,25,0,0,0,28,0,0,0,0,43,128,0,7,0,0,13.9455503512881,0,0,0,10,0,0,0,0,0,0,0,31,0,11,10,18,6.45122630992196,9,15,13.6888604353393,13.1805571092963,12.204510897111,8.47543395116211,12,0,12,0,13,19,0,0,10,11,0,10,0,0,10,0,0,0 +"855.414001464844",0,0,0,0,0,0,0,0,12,6,7.18305233194657,12,0,0,0,5,0,0,0,0,8,9,0,6,0,0,5.95081967213115,0,0,0,10,0,0,0,0,0,0,0,7,0,4,5,0,0,11,6,7.69355527102006,13.1817876719991,7.20628484541308,7.4780817887614,9,0,4,0,9,10,0,0,6,7,0,8,0,0,0,0,0,0 +"856.042724609375",0,0,0,0,0,0,0,0,6,5,9.18655572585943,18,0,0,0,16,0,0,0,0,23,70,0,10,0,0,0,0,0,0,13,0,0,0,0,0,0,0,22,0,13,11,9,5.45847268673356,8,13,4.70209133589415,13.1840250587314,9.20805879371516,12.4842600764931,12,0,10,0,9,8,0,0,9,8,0,0,0,0,0,0,0,0 +"856.252319335938",0,0,0,0,0,0,0,0,9,6,9.18830742281585,13,0,0,0,11,0,0,0,0,10,0,0,6,0,0,8.96370023419204,0,0,0,6,0,0,0,0,0,0,0,0,0,8,10,6,4.45986622073579,8,8,6.70507895860008,7.18469627475109,7.20894576786619,7.48514268902618,0,0,6,0,7,7,0,0,7,9,0,10,0,0,0,0,0,0 +"857.056091308594",0,0,0,0,0,0,0,0,9,0,0,19,0,0,0,13,0,0,0,0,13,37,0,5,0,0,8.97950819672131,0,0,0,7,0,0,0,0,0,0,0,18,0,8,5,9,5.46627647714604,9,0,0,9.18726926949323,0,9.49161518093557,11,0,8,0,7,9,0,0,8,8,0,0,0,0,10,0,0,0 +"857.265808105469",0,0,0,0,0,0,0,0,14,9,9.195095248522,0,0,0,0,9,0,0,0,0,11,10,0,6,0,0,7.98360655737705,0,0,0,9,0,0,0,0,0,0,0,10,0,8,10,12,6.46794871794872,0,9,9.7157490396927,6.18782861617631,6.21224024328434,8.49485142689026,10,0,4,0,12,8,0,0,7,8,0,0,0,6,0,0,0,0 +"857.510559082031",0,0,0,0,0,0,0,0,0,4,4.19597109700022,0,0,0,0,7,0,0,0,0,0,6,0,5,0,0,5.98594847775176,0,0,0,6,0,0,0,0,0,0,0,9,0,6,6,0,0,0,0,0,0,7.21350734921439,6.49602824360106,8,0,5,0,4,8,0,0,7,8,0,0,0,0,0,0,0,0 +"857.650451660156",0,0,0,0,0,0,0,0,6,4,4.19706590759799,8,0,0,0,5,0,0,0,0,4,7,0,7,0,0,5.99004683840749,0,0,0,6,0,0,0,0,0,0,0,7,0,0,6,5,6.46989966555184,8,6,5.72087067861716,6.18939478688891,6.21439432336543,4.49720506031186,9,0,4,0,5,7,0,0,4,5,0,7,0,6,0,0,0,0 +"858.070068359375",0,0,0,0,0,0,0,0,7,6,0,9,0,0,0,9,0,0,0,0,8,12,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,7,10,9,7.47435897435897,9,9,0,13.1901778722452,0,7.50102971462195,10,0,5,0,6,7,0,0,6,10,0,0,0,0,0,0,0,0 +"858.2099609375",0,0,0,0,0,0,0,0,8,6,9.20056930151084,9,0,0,0,10,0,0,0,0,6,10,0,9,0,0,6.99765807962529,0,0,0,10,0,0,0,0,0,0,0,7,0,7,10,9,4.47547380156076,0,7,9.72727272727273,0,7.21642169285352,6.50250073551044,8,0,8,0,5,7,0,0,6,8,0,0,0,0,0,0,0,0 +"858.454833984375",0,0,0,0,0,0,0,0,8,4,7.20232099846726,7,0,0,0,7,0,0,0,0,7,6,0,7,0,0,3,0,0,0,5,0,0,0,0,0,0,0,5,0,7,5,9,4.47686733556299,12,13,9.73111395646607,13.1916321736212,5.21730866700456,6.50485436893204,15,0,7,0,8,7,0,0,10,10,26,12,0,11,11,0,0,0 +"859.084655761719",0,0,0,0,0,0,0,0,10,7,9.20670024085833,8,0,0,0,13,0,0,0,0,10,13,0,6,0,0,11,0,0,0,11,0,0,0,0,0,0,0,12,0,9,8,13,8.48244147157191,0,7,8.73751600512164,7.19364582168028,9.21895590471363,9.50867902324213,14,0,5,0,8,8,0,0,8,8,0,0,0,0,0,0,0,0 +"859.469665527344",0,0,0,0,0,0,0,0,9,0,8.2077950514561,6,0,0,0,6,0,0,0,0,6,7,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,4,0,4,5,6,5.48550724637681,9,9,7.74391805377721,8.19521199239288,6.22085656360872,6.51191526919682,10,0,5,0,4,0,0,0,7,9,0,8,0,6,11,9,0,0 +"860.099853515625",0,0,0,0,0,0,0,0,7,3,0,4,0,0,0,11,0,0,0,0,8,11,0,6,0,0,9,0,0,0,5,0,0,0,0,0,0,0,4,0,6,6,6,8.49080267558528,11,7,0,6.19711377111534,6.22313735428282,6.51721094439541,8,0,4,0,7,7,0,0,7,7,0,7,0,0,0,0,0,0 +"860.344970703125",0,0,0,0,0,0,0,0,0,5,13.2128311802058,6,0,0,0,9,0,0,0,0,0,7,0,0,0,0,7,0,0,0,8,0,0,0,0,0,0,0,6,0,5,0,6,3.49163879598662,0,7,0,8.19767311779841,0,0,0,0,7,0,5,0,0,0,6,7,0,0,0,0,0,0,0,0 +"860.450012207031",0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,5,0,0,0,0,7,0,0,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,4,0,0,6,6.75416133162612,0,4.22389761784085,9.5201529861724,10,0,0,0,5,7,0,0,9,5,0,0,0,0,0,0,0,0 +"860.66015625",0,0,0,0,0,0,0,0,4,7,7.21523976352091,9,0,0,0,4,0,0,0,0,7,5,0,6,0,0,5,0,0,0,6,0,0,0,0,0,0,0,0,0,5,4,8,8.49498327759197,0,6,4.75842936406317,9.19823246448149,7.22465788139889,6.5216240070609,9,0,8,0,5,5,0,0,7,0,0,0,0,7,0,0,0,0 +"861.045532226562",0,0,0,0,0,0,0,0,5,9,10.2180862710751,24,0,0,0,23,0,0,0,0,27,47,0,8,0,0,36,0,0,0,19,0,0,0,0,0,0,0,87,0,13,16,40,79.4980490523969,34,13,22.7631241997439,29.1997986351941,22.226558540294,24.5257428655487,19,0,15,0,12,22,0,0,19,12,24,14,0,8,16,14,0,0 +"861.430969238281",0,0,0,0,0,0,0,0,7,5,0,8,0,0,0,6,0,0,0,0,8,0,0,4,0,0,5,0,0,0,10,0,0,0,0,0,0,0,18,0,4,8,11,17.5011148272018,11,10,10.7678190354247,20.2011410672335,15.227825646224,9.52897911150338,16,0,5,0,10,7,0,0,10,8,25,17,0,26,18,17,0,0 +"861.641235351562",0,0,0,0,0,0,0,0,6,3,7.22158966498796,0,0,0,0,5,0,0,0,0,7,11,0,3,0,0,3,0,0,0,6,0,0,0,0,0,0,0,11,0,3,8,10,18.5027870680045,10,10,0,9.202147891263,10.2285859097821,11.5307443365696,15,0,6,0,4,6,0,0,8,13,15,12,0,0,14,0,0,0 +"862.061889648438",0,0,0,0,0,0,0,0,7,4,0,13,0,0,0,21,0,0,0,0,12,33,0,6,0,0,17,0,0,0,15,0,0,0,0,0,0,0,45,0,10,9,21,46.5061315496098,25,13,14.7746478873239,25.2030428459559,17.2302331474911,11.5348631950574,17,0,10,0,12,10,0,0,12,9,16,12,0,10,15,11,0,0 +"862.412475585938",0,0,0,0,0,0,0,0,8,7,9.22640683161813,10,0,0,0,6,0,0,0,0,8,9,0,5,0,0,6,0,0,0,7,0,0,0,0,0,0,0,11,0,6,6,10,15.5100334448161,12,10,0,17.2038259313122,9.23162696401419,6.53780523683436,17,0,5,0,6,11,0,0,9,7,17,8,0,14,14,18,0,0 +"863.043701171875",0,0,0,0,0,0,0,0,0,9,7.2312239982483,11,0,0,0,12,0,0,0,0,0,0,0,7,0,0,12,0,0,0,10,0,0,0,0,0,0,0,25,0,9,12,15,19.5139353400223,12,11,0,0,0,8.54280670785525,12,0,14,0,7,14,0,0,8,11,0,10,0,10,0,10,0,0 +"863.254211425781",0,0,0,0,0,0,0,0,10,6,9.23231880884607,8,0,0,0,10,0,0,0,0,11,18,0,6,0,0,6,0,0,0,8,0,0,0,0,0,0,0,10,0,7,9,0,15.5147714604236,11,8,0,11.206510795391,11.2341611758743,0,7,0,10,0,7,9,0,0,8,7,0,0,0,6,0,0,0,0 +"863.464660644531",0,0,0,0,0,0,0,0,9,5,6.23341361944384,6,0,0,0,6,0,0,0,0,7,8,0,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,6,0,9,10.5172798216276,9,7,7.79214682031583,10.2074057500839,9.23492143943234,0,11,0,7,0,6,6,0,0,7,0,19,7,0,7,10,0,0,0 +"863.675231933594",0,0,0,0,0,0,0,0,0,4,5.2345084300416,6,0,0,0,6,0,0,0,0,5,6,0,5,0,0,8,0,0,0,4,0,0,0,0,0,0,0,10,0,5,7,4,10.5195094760312,8,0,4.79513444302177,9.20818883544021,8.23606183476939,4.54780817887614,7,0,5,0,5,6,0,0,4,11,0,11,0,8,0,0,0,0 +"864.236694335938",0,0,0,0,0,0,0,0,10,5,10.2373549375958,7,0,0,0,0,0,0,0,0,6,8,0,8,0,0,11,0,0,0,5,0,0,0,0,0,0,0,8,0,7,6,8,0,9,0,5.80068288518993,0,0,0,0,0,8,0,0,6,0,0,4,5,0,0,0,0,0,0,0,0 +"864.377136230469",0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,9,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,7,6,0,9.52341137123746,0,9,0,0,6.23821591485048,9.55310385407473,11,0,0,0,8,0,0,0,0,5,0,0,0,6,0,0,0,0 +"864.482421875",0,0,0,0,0,0,0,0,8,6,0,6,0,0,0,10,0,0,0,0,10,5,0,5,0,0,7,0,0,0,3,0,0,0,0,0,0,0,9,0,6,6,6,0,8,6,7.80281690140845,8.21076183018235,5.23897617840851,6.55428067078553,0,0,5,0,5,6,0,0,7,5,0,7,0,6,11,0,0,0 +"865.009094238281",0,0,0,0,0,0,0,0,7,6,6.24261002846508,0,0,0,0,14,0,0,0,0,7,15,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,10,0,0,7,9,0,8,7,0,10.2124398702316,0,5.55781112091792,0,0,6,0,0,0,0,0,5,0,0,7,0,0,0,0,0,0 +"865.149597167969",0,0,0,0,0,0,0,0,7,5,10.2441427633019,8,0,0,0,11,0,0,0,0,7,8,0,9,0,0,5,0,0,0,5,0,0,0,0,0,0,0,10,0,8,10,8,10.5303790412486,12,7,5.81177976952625,6.21288734757803,7.24113025848961,5.56075316269491,10,0,6,0,6,10,0,0,5,9,0,0,0,8,0,0,0,0 +"865.395446777344",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,6,0,0,0,0,6,0,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,6.2134466942611,0,11.5625183877611,0,0,6,0,5,8,0,0,0,0,0,0,0,6,0,0,0,0 +"865.500793457031",0,0,0,0,0,0,0,0,7,6,0,6,0,0,0,0,0,0,0,0,0,7,0,6,0,0,7,0,0,0,4,0,0,0,0,0,0,0,9,0,7,7,8,0,8,0,5.8160478019633,0,6.24252407501267,6.5634010002942,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0 +"865.606201171875",0,0,0,0,0,0,0,0,8,5,8.24567549813882,6,0,0,0,6,0,0,0,0,8,0,0,6,0,0,5,0,0,0,4,0,0,0,0,0,0,0,7,0,7,7,5,7.53428093645485,0,7,0,7.21434164895402,0,5.5642836128273,0,0,4,0,5,6,0,0,4,5,0,0,0,0,0,0,0,0 +"865.816955566406",0,0,0,0,0,0,0,0,4,5,6.2476461572148,9,0,0,0,7,0,0,0,0,5,8,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,5,0,6,6,5,5.53595317725753,0,6,0,6.21467725696387,6.2431576279777,5.5660488378935,9,0,5,0,5,7,0,0,4,6,0,0,0,0,0,0,0,0 +"866.238586425781",0,0,0,0,0,0,0,0,0,5,0,7,0,0,0,9,0,0,0,0,13,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,6,7,5,5.53929765886288,10,0,8.82501067008109,6.21624342767647,0,6.56869667549279,7,0,4,0,7,5,0,0,0,7,0,0,0,0,0,0,0,0 +"866.414306640625",0,0,0,0,0,0,0,0,9,4,11.2509305890081,5,0,0,0,0,0,0,0,0,6,10,0,5,0,0,8,0,0,0,7,0,0,0,0,0,0,0,5,0,4,5,6,5.54180602006689,8,8,5.82671788305591,8.21713838236939,7.24531170805879,7.57075610473669,8,0,3,0,5,6,0,0,5,6,0,0,0,7,0,0,0,0 +"867.082214355469",0,0,0,0,0,0,0,0,12,6,10.2564046419969,11,0,0,0,11,0,0,0,0,8,11,0,8,0,0,9,0,0,0,23,0,0,0,0,0,0,0,6,0,0,27,17,53.5459866220736,30,45,41.8361075544174,58.2191520304285,72.2482260516979,76.576345984113,30,0,6,0,9,18,0,0,60,26,35,20,0,11,53,27,0,0 +"868.06689453125",0,0,0,0,0,0,0,0,9,8,7.26187869498577,13,0,0,0,11,0,0,0,0,7,7,0,4,0,0,7,0,0,0,12,0,0,0,0,0,0,0,8,0,8,17,10,27.5540691192865,21,20,24.8480580452411,28.2222843718537,31.2517739483021,41.5848779052663,18,0,7,0,12,17,0,0,25,15,34,19,0,10,34,17,0,0 +"869.052185058594",0,0,0,0,0,0,0,0,37,15,33.2682285964528,27,0,0,0,27,0,0,0,0,20,12,0,21,0,0,12,0,0,0,24,0,0,0,0,0,0,0,9,0,17,32,15,22.561872909699,25,19,28.8591549295775,32.2255285826155,32.2554485554992,31.5931156222418,22,0,14,0,19,18,0,0,30,27,26,14,0,8,26,11,0,0 +"869.474609375",0,0,0,0,0,0,0,0,9,6,8.27019925552879,13,0,0,0,9,0,0,0,0,11,5,0,10,0,0,10,0,0,0,13,0,0,0,0,0,0,0,5,0,10,14,11,40.5652173913044,66,75,54.8647033717456,94.2267591453183,75.2567156614293,33.5960576640188,132,0,6,0,11,9,0,0,32,63,341,71,0,141,161,100,0,0 +"870.0732421875",0,0,0,0,0,0,0,0,15,12,19.2745784979199,13,0,0,0,15,0,0,0,0,12,10,0,12,0,0,13,0,0,0,11,0,0,0,0,0,0,0,4,0,14,20,9,20.5691192865106,14,11,15.8719590268886,20.2286609240407,16.2589964521034,20.6004707266843,24,0,11,0,13,15,0,0,16,15,20,12,0,7,13,11,0,0 +"870.460693359375",0,0,0,0,0,0,0,0,9,7,8.2772060433545,8,0,0,0,9,0,0,0,0,5,7,0,4,0,0,6,0,0,0,8,0,0,0,0,0,0,0,8,0,9,8,7,21.5724637681159,32,53,39.8770806658131,40.2298914867435,37.2603902686265,25.6045895851721,65,0,8,0,8,9,0,0,20,30,142,43,0,89,69,44,0,0 +"870.989196777344",0,0,0,0,0,0,0,0,11,5,13.2804904751478,13,0,0,0,14,0,0,0,0,12,39,0,9,0,0,8,0,0,0,10,0,0,0,0,0,0,0,15,0,9,9,11,0,10,13,11.884336320956,14.2315695267927,13.2622909275215,12.609591056193,12,0,9,0,9,8,0,0,10,9,0,9,0,10,10,0,0,0 +"871.482543945312",0,0,0,0,0,0,0,0,6,7,10.2824611342238,9,0,0,0,7,0,0,0,0,8,6,0,12,0,0,6,0,0,0,6,0,0,0,0,0,0,0,7,0,4,6,6,0,20,22,14.8890311566368,16.2333594361785,12.2639381652306,9.61370991468079,21,0,6,0,6,8,0,0,12,12,52,15,0,20,31,21,0,0 +"872.046630859375",0,0,0,0,0,0,0,0,8,5,12.2864024523757,10,0,0,0,7,0,0,0,0,10,24,0,6,0,0,6,0,0,0,6,0,0,0,0,0,0,0,11,0,8,9,9,9.58528428093645,9,10,9.89628681177977,10.2351493455644,8.26647237709073,12.6172403648132,8,0,5,0,4,11,0,0,12,7,0,0,0,0,0,10,0,0 +"872.399230957031",0,0,0,0,0,0,0,0,8,5,7.28902999781038,10,0,0,0,7,0,0,0,0,7,0,0,7,0,0,6,0,0,0,10,0,0,0,0,0,0,0,8,0,5,10,6,7.58723522853958,12,10,7.90098164746052,11.2360443002573,6.26773948302078,9.62165342747867,14,0,6,0,6,7,0,0,9,9,0,8,0,13,0,9,0,0 +"873.104675292969",0,0,0,0,0,0,0,0,8,3,7.29275235384279,0,0,0,0,6,0,0,0,0,12,16,0,9,0,0,4,0,0,0,9,0,0,0,0,0,0,0,8,0,7,0,7,7.59392419175028,0,7,0,7.23839355632621,7.26989356310188,5.62665489849956,8,0,5,0,9,9,0,0,10,9,0,7,0,0,0,0,0,0 +"873.31640625",0,0,0,0,0,0,0,0,7,6,10.2945040507992,12,0,0,0,4,0,0,0,0,8,9,0,7,0,0,8,0,0,0,6,0,0,0,0,0,0,0,8,0,6,10,8,6.59615384615385,9,6,9.91207853179684,0,8.27116066903193,5.62900853192115,10,0,5,0,7,6,0,0,6,10,0,0,0,14,0,0,0,0 +"873.598693847656",0,0,0,0,0,0,0,0,6,4,6.2969126341143,7,0,0,0,5,0,0,0,0,7,8,0,4,0,0,7,0,0,0,3,0,0,0,0,0,0,0,6,0,6,6,6,4.59726867335563,8,8,7.91506615450277,8.2398478577022,6.27166751140395,0,7,0,4,0,4,9,0,0,6,6,0,8,0,0,0,0,0,0 +"874.163452148438",0,0,0,0,0,0,0,0,0,0,9.29975914166849,8,0,0,0,8,0,0,0,0,0,13,0,6,0,0,7,0,0,0,7,0,0,0,0,0,0,0,13,0,8,6,5,4.60200668896321,8,12,0,11.2419733750979,7.27382159148505,5.63548102383054,9,0,5,0,6,7,0,0,7,11,0,0,0,0,0,0,0,0 +"874.375244140625",0,0,0,0,0,0,0,0,12,5,7.30041602802715,7,0,0,0,6,0,0,0,0,7,0,0,7,0,0,3,0,0,0,6,0,0,0,0,0,0,0,8,0,6,9,8,6.60367892976589,0,7,4.92360221937687,0,6.27458185504308,4.63665784054134,0,0,7,0,8,9,0,0,7,9,0,0,0,0,0,0,0,0 +"874.516479492188",0,0,0,0,0,0,0,0,4,4,7.30260564922268,5,0,0,0,5,0,0,0,0,6,9,0,6,0,0,4,0,0,0,6,0,0,0,0,0,0,0,6,0,6,7,7,5.60507246376812,0,7,7.92573623559539,8.24253272178096,5.2750886974151,4.63842306560753,0,0,5,0,5,7,0,0,4,6,0,0,0,9,0,0,0,0 +"875.010864257812",0,0,0,0,0,0,0,0,7,6,9.30523319465732,7,0,0,0,10,0,0,0,0,5,6,0,6,0,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,6,7,7,9.60841694537347,8,8,9.93299189073837,7.2443226311668,11.2767359351242,0,7,0,6,0,4,6,0,0,6,7,0,7,0,0,0,0,0,0 +"875.258117675781",0,0,0,0,0,0,0,0,9,6,7.30654696737464,6,0,0,0,9,0,0,0,0,7,8,0,7,0,0,7,0,0,0,10,0,0,0,0,0,0,0,8,0,8,5,6,5.61036789297659,0,9,5.9359795134443,12.2449938471865,7.27762290927522,6.64371874080612,8,0,6,0,8,6,0,0,5,9,0,0,0,6,10,0,0,0 +"875.682067871094",0,0,0,0,0,0,0,0,5,4,0,9,0,0,0,0,0,0,0,0,4,6,0,8,0,0,5,0,0,0,4,0,0,0,0,0,0,0,5,0,7,7,6,4.61399108138239,8,6,4.94024754588135,6.24656001789909,9.27889001520527,5.64842600764931,0,0,7,0,5,6,0,0,5,6,0,0,0,0,0,0,0,0 +"876.212097167969",0,0,0,0,0,0,0,0,6,6,10.3126779067221,10,0,0,0,5,0,0,0,0,6,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,5,0,10,9,8,5.61789297658863,0,6,6.94622279129321,7.24779058060186,7.28091738469336,7.651662253604,0,0,6,0,6,11,0,0,6,8,0,0,0,6,0,0,0,0 +"876.388854980469",0,0,0,0,0,0,0,0,8,4,5.31399167943946,7,0,0,0,7,0,0,0,0,3,8,0,3,0,0,5,0,0,0,5,0,0,0,0,0,0,0,6,0,8,6,5,7.6201226309922,10,7,8.94878361075544,7.24902114330462,7.2818043588444,4.6537216828479,9,0,7,0,6,5,0,0,4,5,0,7,0,0,0,0,0,0 +"877.025207519531",0,0,0,0,0,0,0,0,10,6,12.3183709218305,8,0,0,0,12,0,0,0,0,14,50,0,6,0,0,10,0,0,0,7,0,0,0,0,0,0,0,149,0,10,8,11,9.62430323299889,0,6,7.95689287238583,9.25081105269046,8.28433857070451,9.65960576640188,7,0,8,0,8,13,0,0,7,7,0,7,0,6,0,0,0,0 +"877.5556640625",0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,4,0,0,0,0,9,8,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,21,0,6,4,5,0,0,9,7.96158770806658,0,8.28585909782058,11.6625478081789,0,0,4,0,7,5,0,0,4,5,0,8,0,0,0,0,0,0 +"877.767883300781",0,0,0,0,0,0,0,0,4,5,5.32121742938472,6,0,0,0,5,0,0,0,0,6,8,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,0,0,5,6,0,0,0,6,0,0,0,0,7,0,5,0,4,6,0,0,4,0,0,0,0,0,0,0,0,0 +"878.015502929688",0,0,0,0,0,0,0,0,0,3,0,8,0,0,0,7,0,0,0,0,10,35,0,6,0,0,7,0,0,0,7,0,0,0,0,0,0,0,83,0,0,5,7,7.63238573021182,0,8,7.96841655996586,8.25360778610583,6.28737962493664,7.66784348337746,9,0,5,0,7,8,0,0,8,8,0,0,0,0,0,0,0,0 +"878.404724121094",0,0,0,0,0,0,0,0,9,4,7.32537770965623,9,0,0,0,5,0,0,0,0,5,12,0,8,0,0,6,0,0,0,6,0,0,0,0,0,0,0,14,0,6,6,5,6.63545150501672,0,9,0,0,7.28877344145971,5.67166813768756,7,0,5,0,5,7,0,0,6,6,0,8,0,0,0,0,0,0 +"879.006408691406",0,0,0,0,0,0,0,0,0,8,10.3297569520473,10,0,0,0,0,0,0,0,0,16,17,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,39,0,7,4,6,0,9,7,5.98079385403329,7.25674012753104,0,0,0,0,4,0,5,8,0,0,7,6,0,0,0,6,0,0,0,0 +"879.183410644531",0,0,0,0,0,0,0,0,10,0,10.3312896868842,8,0,0,0,10,0,0,0,0,6,10,0,8,0,0,10,0,0,0,7,0,0,0,0,0,0,0,21,0,8,8,9,6.64158305462653,8,7,4.9820742637644,6.25785882089719,6.29130765331982,8.67637540453075,8,0,6,0,11,10,0,0,7,8,0,7,0,6,13,0,0,0 +"879.75",0,0,0,0,0,0,0,0,4,4,3.33391723231881,4,0,0,0,4,0,0,0,0,5,7,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,13,0,0,5,4,0,8,8,6.98847631241997,0,0,5.68284789644013,0,0,4,0,4,8,0,0,6,0,0,0,0,0,0,0,0,0 +"879.997863769531",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,13,0,6,0,0,8,0,0,0,5,0,0,0,0,0,0,0,23,0,7,5,12,0,10,7,0,8.25998433829287,8.29447541814496,9.68461312150633,9,0,4,0,7,5,0,0,7,6,0,0,0,6,0,0,0,0 +"880.174987792969",0,0,0,0,0,0,0,0,0,5,8.336763739873,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,12,0,0,0,0,0,0,0,19,0,8,6,8,9.64910813823857,0,9,7.99359795134443,0,0,0,7,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 +"880.28125",0,0,0,0,0,0,0,0,10,7,0,9,0,0,0,11,0,0,0,0,10,7,0,7,0,0,6,0,0,0,6,0,0,0,0,0,0,0,11,0,5,6,7,0,10,0,7.99615877080666,7.26065555431256,0,7.68549573403942,7,0,4,0,8,9,0,0,7,0,0,0,0,7,0,0,0,0 +"880.422973632812",0,0,0,0,0,0,0,0,8,4,7.33807751259032,8,0,0,0,5,0,0,0,0,7,9,0,4,0,0,6,0,0,0,4,0,0,0,0,0,0,0,10,0,5,6,7,3.6505016722408,8,7,6.99743918053777,0,7.29599594526102,10.687849367461,11,0,6,0,5,7,0,0,5,7,0,7,0,0,0,0,0,0 +"880.989929199219",0,0,0,0,0,0,0,0,5,4,8.34245675498139,9,0,0,0,9,0,0,0,0,0,13,0,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,6,6.65523968784838,9,6,0,0,8.29840344652813,6.69108561341571,8,0,6,0,6,9,0,0,0,7,0,0,0,6,0,0,0,0 +"881.167114257812",0,0,0,0,0,0,0,0,5,3,6.34311364134005,8,0,0,0,5,0,0,0,0,9,0,0,7,0,0,7,0,0,0,8,0,0,0,0,0,0,0,13,0,7,7,5,6.65802675585284,0,6,9,6.26378789573778,0,7.6940276551927,0,0,6,0,6,10,0,0,7,7,0,7,0,0,0,0,0,0 +"881.379760742188",0,0,0,0,0,0,0,0,9,4,10.3446463761769,0,0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,5,0,5,0,5,0,12,7,8,0,5.29903699949316,0,10,0,0,0,5,9,0,0,0,8,0,0,0,0,0,0,0,0 +"881.521545410156",0,0,0,0,0,0,0,0,7,5,4.34552222465513,8,0,0,0,6,0,0,0,0,4,5,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,9,0,3,6,5,5.65942028985507,0,6,8,8.26501845844054,4.3000506842372,6.6975581053251,0,0,4,0,4,6,0,0,8,7,0,7,0,0,0,0,0,0 +"882.017944335938",0,0,0,0,0,0,0,0,4,0,6.34771184585067,0,0,0,0,7,0,0,0,0,6,0,0,7,0,0,8,0,0,0,6,0,0,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0,8.70079435127979,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0 +"882.124328613281",0,0,0,0,0,0,0,0,0,8,0,9,0,0,0,9,0,0,0,0,7,11,0,0,0,0,8,0,0,0,7,0,0,0,0,0,0,0,4,0,4,0,6,10.6638795986622,0,0,9,7.26680836782638,0,0,0,0,5,0,4,7,0,0,5,6,0,0,0,0,0,0,0,0 +"882.301635742188",0,0,0,0,0,0,0,0,7,6,10.3494635428071,8,0,0,0,7,0,0,0,0,7,7,0,8,0,0,8,0,0,0,7,0,0,0,0,0,0,0,4,0,6,8,5,5.66666666666667,11,8,5,0,7.30271160669032,6.70197116799059,0,0,4,0,5,8,0,0,4,7,0,8,0,0,0,0,0,0 +"882.585388183594",0,0,0,0,0,0,0,0,8,4,10.3523100503613,9,0,0,0,5,0,0,0,0,6,6,0,8,0,0,6,0,0,0,4,0,0,0,0,0,0,0,6,0,4,5,4,0,0,8,7,7.26803893052914,5.30372529143436,0,0,0,3,0,4,7,0,0,5,7,0,0,0,0,0,0,0,0 +"883.08203125",0,0,0,0,0,0,0,0,8,6,0,9,0,0,0,10,0,0,0,0,9,12,0,6,0,0,6,0,0,0,6,0,0,0,0,0,0,0,7,0,10,9,7,8.67224080267559,0,0,7,9.26994070925159,0,7.70903206825537,9,0,0,0,8,7,0,0,0,8,0,0,0,0,0,0,0,0 +"883.259460449219",0,0,0,0,0,0,0,0,9,6,10.3555944821546,0,0,0,0,9,0,0,0,0,9,6,0,10,0,0,5,0,0,0,6,0,0,0,0,0,0,0,6,0,10,7,6,6.67335562987737,9,0,0,8.27050005593467,6.30575266092245,9.71109149749926,7,0,9,0,7,8,0,0,8,0,0,0,0,0,0,0,0,0 +"883.436889648438",0,0,0,0,0,0,0,0,6,6,0,7,0,0,0,0,0,0,0,0,5,4,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,5,0,6,5,7,9.6747491638796,0,0,8,0,9.3068930562595,0,0,0,3,0,5,0,0,0,0,6,0,0,0,0,0,0,0,0 +"883.578857421875",0,0,0,0,0,0,0,0,7,5,7.35800306546967,7,0,0,0,6,0,0,0,0,5,4,0,3,0,0,5,0,0,0,6,0,0,0,0,0,0,0,5,0,7,4,5,0,0,8,5,6.27117127195436,5.30739989863153,9.71344513092086,8,0,4,0,5,6,0,0,8,8,0,0,0,0,0,0,0,0 +"883.969299316406",0,0,0,0,0,0,0,0,0,4,0,8,0,0,0,9,0,0,0,0,5,7,0,4,0,0,8,0,0,0,6,0,0,0,0,0,0,0,10,0,6,6,8,7.67976588628763,0,8,6,8.27273744266697,0,0,7,0,7,0,10,9,0,0,5,0,0,0,0,0,0,0,0,0 +"884.182312011719",0,0,0,0,0,0,0,0,9,0,0,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,11,0,0,0,0,10.7175639894086,10,0,6,0,5,9,0,0,0,7,0,9,0,6,0,0,0,0 +"884.288818359375",0,0,0,0,0,0,0,0,0,7,9.36172542150208,5,0,0,0,0,0,0,0,0,10,6,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,0,8,8,6,4.68060200668896,0,6,0,0,9.30968068930563,0,0,0,0,0,5,0,0,0,10,8,0,0,0,6,0,0,0,0 +"884.395324707031",0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,7,0,0,0,0,8,5,0,0,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,6,8.2737442666965,0,7.72050603118564,7,0,6,0,6,5,0,0,0,6,0,8,0,0,0,0,0,0 +"884.537414550781",0,0,0,0,0,0,0,0,5,6,7.36325815633895,9,0,0,0,6,0,0,0,0,6,7,0,6,0,0,6,0,0,0,3,0,0,0,0,0,0,0,4,0,7,4,7,0,0,0,6,10.2746392213894,8.31044095286366,5.72285966460724,9,0,7,0,4,8,0,0,0,6,0,0,0,6,0,0,0,0 +"884.999084472656",0,0,0,0,0,0,0,0,8,7,5.36676155025181,8,0,0,0,11,0,0,0,0,7,10,0,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,16,0,13,7,13,0,0,8,9,9.27575791475557,0,0,9,0,0,0,10,0,0,0,0,9,0,0,0,0,0,0,0,0 +"885.176696777344",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,9,0,0,0,0,6,8,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,14,0,0,0,9,8.68868450390189,11,0,10,0,9.31310187531678,9.72639011473963,8,0,9,0,10,11,0,0,8,0,0,7,0,0,0,0,0,0 +"885.318786621094",0,0,0,0,0,0,0,0,8,5,11.3682942850887,13,0,0,0,8,0,0,0,0,7,5,0,9,0,0,9,0,0,0,7,0,0,0,0,0,0,0,11,0,11,9,6,4.68979933110368,13,7,7,10.2767647387851,7.31386213887481,8.72844954398352,8,0,5,0,8,8,0,0,6,9,0,7,0,0,11,0,0,0 +"885.709594726562",0,0,0,0,0,0,0,0,9,5,4.37070286840377,5,0,0,0,6,0,0,0,0,6,6,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,7,0,5,5,10,0,8,6,8,6.27788343215125,9.31512924480487,0,7,0,6,0,4,7,0,0,5,0,0,0,0,0,0,0,0,0 +"886.136108398438",0,0,0,0,0,0,0,0,5,6,11.3737683380775,12,0,0,0,7,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,9,0,7.69648829431438,12,0,0,0,0,0,0,0,0,0,12,10,0,0,10,0,0,0,0,0,0,0,0,0 +"886.242736816406",0,0,0,0,0,0,0,0,6,6,10.3746441865557,7,0,0,0,5,0,0,0,0,10,5,0,6,0,0,7,0,0,0,6,0,0,0,0,0,0,0,10,0,8,5,9,6.69760312151617,0,7,9,6.27989708021031,6.31639635073492,7.73492203589291,0,0,8,0,7,10,0,0,6,6,0,8,0,7,0,0,0,0 +"886.491516113281",0,0,0,0,0,0,0,0,5,3,0,7,0,0,0,6,0,0,0,0,4,6,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,6,0,6,0,5,0,0,0,5,9.28045642689339,0,10.7369814651368,9,0,6,0,0,7,0,0,0,7,0,0,0,0,0,0,0,0 +"886.633728027344",0,0,0,0,0,0,0,0,5,4,6.37661484563171,5,0,0,0,6,0,0,0,0,4,4,0,4,0,0,4,0,0,0,6,0,0,0,0,0,0,0,7,0,6,6,4,6.70011148272018,0,0,6,0,6.31804358844399,0,0,0,5,0,8,6,0,0,7,6,0,0,0,6,0,0,0,0 +"886.989318847656",0,0,0,0,0,0,0,0,8,6,11.3788044668272,7,0,0,0,10,0,0,0,0,7,11,0,6,0,0,8,0,0,0,7,0,0,0,0,0,0,0,8,0,9,10,8,7.70317725752508,16,7,8,11.2822463362792,0,9.74227714033539,9,0,7,0,9,10,0,0,8,7,0,0,0,0,0,0,0,0 +"887.736206054688",0,0,0,0,0,0,0,0,5,7,4.38340267133786,8,0,0,0,7,0,0,0,0,5,8,0,6,0,0,4,0,0,0,5,0,0,0,0,0,0,0,5,0,4,5,8,4.70903010033445,0,6,7,0,6.32222503801318,5.74874963224478,0,0,5,0,4,6,0,0,5,9,0,0,0,0,0,0,0,0 +"888.020812988281",0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,5,9,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,6,0,5,5,9,0,0,6,7,8.28515493903121,0,7.75080906148867,7,0,4,0,4,14,0,0,10,6,0,0,0,0,0,0,0,0 +"888.19873046875",0,0,0,0,0,0,0,0,13,5,7.3860302167725,10,0,0,0,6,0,0,0,0,7,8,0,8,0,0,5,0,0,0,9,0,0,0,0,0,0,0,8,0,5,7,6,7.71125975473802,0,9,7,9.28593802438752,11.3237455651292,5.75198587819947,0,0,6,0,8,8,0,0,6,8,0,0,0,6,0,0,0,0 +"888.483459472656",0,0,0,0,0,0,0,0,6,3,12.3886577622071,6,0,0,0,8,0,0,0,0,6,8,0,4,0,0,5,0,0,0,3,0,0,0,0,0,0,0,6,0,6,7,4,7.71516164994426,9,7,6,0,0,5.75375110326567,7,0,4,0,7,6,0,0,10,6,0,0,0,6,0,0,0,0 +"889.017395019531",0,0,0,0,0,0,0,0,7,4,0,10,0,0,0,11,0,0,0,0,9,4,0,5,0,0,10,0,0,0,8,0,0,0,0,0,0,0,9,0,9,7,8,9.71878483835006,11,11,8,0,9.3271667511404,9.75875257428656,8,0,7,0,9,8,0,0,8,11,0,10,0,8,11,0,0,0 +"889.23095703125",0,0,0,0,0,0,0,0,0,0,10.3928180424787,8,0,0,0,0,0,0,0,0,8,0,0,8,0,0,4,0,0,0,7,0,0,0,0,0,0,0,0,0,0,5,0,6.71962095875139,0,0,0,7.28873475780289,0,0,7,0,6,0,6,7,0,0,0,0,0,0,0,9,0,11,0,0 +"889.337768554688",0,0,0,0,0,0,0,0,10,7,9.39369389095686,6,0,0,0,8,0,0,0,0,6,7,0,6,0,0,7,0,0,0,4,0,0,0,0,0,0,0,8,0,6,5,6,0,0,10,10,0,5.32767359351242,8.76140041188585,0,0,5,0,6,7,0,0,5,8,16,10,0,7,10,0,0,0 +"889.551452636719",0,0,0,0,0,0,0,0,7,5,6.39478870155463,5,0,0,0,4,0,0,0,0,5,6,0,6,0,0,7,0,0,0,5,0,0,0,0,0,0,0,7,0,6,8,6,8.72185061315496,9,8,6,7.28985345116903,10.3286872782565,0,8,0,5,0,6,3,0,0,5,9,0,7,0,7,0,0,0,0 +"890.085693359375",0,0,0,0,0,0,0,0,11,8,9.39894898182614,5,0,0,0,10,0,0,0,0,7,6,0,5,0,0,7,0,0,0,7,0,0,0,0,0,0,0,6,0,6,8,7,10.7271460423634,11,9,5,13.2917552298915,8.33046122655854,14.7678729037952,0,0,4,0,8,8,0,0,12,7,0,8,0,8,13,16,0,0 +"890.477600097656",0,0,0,0,0,0,0,0,9,0,7.3996058681848,5,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,7.729375696767,0,7,7,0,9.3318550430816,0,0,0,0,0,7,6,0,0,7,8,0,8,0,10,0,0,0,0 +"890.58447265625",0,0,0,0,0,0,0,0,7,7,7.40157652726078,5,0,0,0,0,0,0,0,0,4,4,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,4,0,4,7,5,8.73216276477146,10,7,8,7.29343326994071,7.33236188545362,6.77169755810533,9,0,3,0,7,6,0,0,6,5,0,8,0,0,12,0,0,0 +"891.012084960938",0,0,0,0,0,0,0,0,16,14,23.4037661484563,19,0,0,0,19,0,0,0,0,15,10,0,18,0,0,14,0,0,0,13,0,0,0,0,0,0,0,8,0,16,24,12,8.73411371237458,10,10,14,12.2946638326435,12.3340091231627,16.7752280082377,13,0,13,0,16,11,0,0,13,16,0,11,0,7,14,10,0,0 +"891.475463867188",0,0,0,0,0,0,0,0,5,6,11.4066126560105,6,0,0,0,6,0,0,0,0,4,7,0,6,0,0,7,0,0,0,6,0,0,0,0,0,0,0,5,0,5,7,8,17.7377369007804,21,26,26,44.2962300033561,22.3355296502788,18.7784642541924,32,0,5,0,7,7,0,0,12,20,71,27,0,56,63,46,0,0 +"892.010314941406",0,0,0,0,0,0,0,0,12,6,18.4103350120429,9,0,0,0,17,0,0,0,0,8,11,0,11,0,0,7,0,0,0,10,0,0,0,0,0,0,0,8,0,12,10,10,8.74275362318841,10,9,11,9.29734869672223,10.3376837303599,10.7834657252133,9,0,13,0,9,11,0,0,10,13,0,8,0,0,11,9,0,0 +"892.438293457031",0,0,0,0,0,0,0,0,7,4,9.41296255747756,7,0,0,0,9,0,0,0,0,7,7,0,5,0,0,9,0,0,0,7,0,0,0,0,0,0,0,9,0,8,11,7,9.74581939799331,12,15,15,21.2993623447813,10.3392042574759,16.7875845837011,21,0,5,0,7,6,0,0,7,18,59,16,0,25,38,25,0,0 +"893.009094238281",0,0,0,0,0,0,0,0,10,6,12.4162469892709,6,0,0,0,9,0,0,0,0,11,31,0,8,0,0,13,0,0,0,8,0,0,0,0,0,0,0,109,0,7,7,7,8.74972129319955,9,7,8,19.3009285154939,7.340851495185,7.79082082965578,8,0,5,0,11,6,0,0,5,10,15,7,0,0,0,0,0,0 +"893.330200195312",0,0,0,0,0,0,0,0,12,7,0,10,0,0,0,6,0,0,0,0,10,0,0,8,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,7,0,6.75250836120401,13,0,0,0,10.341991890522,0,0,0,0,0,10,0,0,0,7,10,0,0,0,0,0,0,0,0 +"893.437255859375",0,0,0,0,0,0,0,0,11,4,9.41843661046639,7,0,0,0,7,0,0,0,0,4,11,0,7,0,0,4,0,0,0,5,0,0,0,0,0,0,0,19,0,6,7,8,5.75334448160535,8,11,6,17.3022709475333,13.3427521540801,5.79493968814357,12,0,7,0,5,9,0,0,6,6,18,8,0,12,19,13,0,0 +"894.008361816406",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,8,11,0,6,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,9,0,7,6.75696767001115,0,6,0,0,0,0,8,0,6,0,7,6,0,0,8,7,0,0,0,0,0,0,0,0 +"894.115478515625",0,0,0,0,0,0,0,0,11,5,8.4221589664988,10,0,0,0,7,0,0,0,0,10,11,0,8,0,0,6,0,0,0,12,0,0,0,0,0,0,0,65,0,9,5,7,9.75863991081382,0,10,7,9.30506768094865,0,9.80082377169756,13,0,7,0,5,5,0,0,7,10,0,9,0,0,0,0,0,0 +"894.5439453125",0,0,0,0,0,0,0,0,8,4,8.42478651193344,6,0,0,0,6,0,0,0,0,8,8,0,5,0,0,6,0,0,0,7,0,0,0,0,0,0,0,0,0,5,5,7,6.76198439241918,8,0,7,7.30596263564157,5.34604662949823,9.80435422182995,9,0,6,0,4,7,0,0,5,6,0,8,0,7,11,0,0,0 +"895.151184082031",0,0,0,0,0,0,0,0,8,5,0,11,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,8,9,0,8.76644370122631,0,7,0,0,5.34845413076533,0,10,0,6,0,11,0,0,0,0,8,0,0,0,0,0,0,0,0 +"895.294067382812",0,0,0,0,0,0,0,0,0,4,9.42960367856361,8,0,0,0,6,0,0,0,0,10,8,0,3,0,0,8,0,0,0,6,0,0,0,0,0,0,0,12,0,5,5,7,0,0,0,8,11.3079762837006,0,7.80994410120624,8,0,7,0,0,6,0,0,6,0,0,0,0,0,11,0,0,0 +"895.436950683594",0,0,0,0,0,0,0,0,10,4,8.43047952704182,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,11,0,5,5,6,5.76895206243032,0,7,0,0,0,0,0,0,7,0,7,4,0,0,6,9,0,0,0,0,0,0,0,0 +"895.615600585938",0,0,0,0,0,0,0,0,4,4,9.43157433763959,6,0,0,0,7,0,0,0,0,8,7,0,5,0,0,7,0,0,0,6,0,0,0,0,0,0,0,9,0,4,5,6,4.77034559643255,9,9,5,9.30887123839356,6.34959452610238,6.81170932627243,7,0,4,0,6,4,0,0,5,7,0,0,0,7,0,0,0,0 +"896.187438964844",0,0,0,0,0,0,0,0,6,6,0,7,0,0,0,5,0,0,0,0,7,9,0,5,0,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0,8,8,7,8.7742474916388,8,9,8,7.31077301711601,7.3522554485555,7.81700500147102,7,0,8,0,6,7,0,0,6,8,0,7,0,6,0,0,0,0 +"896.401916503906",0,0,0,0,0,0,0,0,0,5,8.4357346179111,7,0,0,0,7,0,0,0,0,0,0,0,6,0,0,4,0,0,0,6,0,0,0,0,0,0,0,12,0,0,0,7,6.77619843924192,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,12,0,0 +"896.509155273438",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,6,0,0,0,0,0,6.35339584389255,0,0,0,0,0,4,6,0,0,0,0,0,7,0,0,0,0,0,0 +"896.616394042969",0,0,0,0,0,0,0,0,5,5,9.4390190497044,5,0,0,0,6,0,0,0,0,6,4,0,4,0,0,5,0,0,0,6,0,0,0,0,0,0,0,10,0,7,8,6,3.7773132664437,8,7,5,8.31211544915539,5.35377597567157,5.81994704324801,0,0,5,0,5,6,0,0,6,8,0,0,0,0,0,0,0,0 +"897.045471191406",0,0,0,0,0,0,0,0,6,6,6.44011386030217,7,0,0,0,7,0,0,0,0,9,8,0,8,0,0,5,0,0,0,8,0,0,0,0,0,0,0,10,0,7,6,6,7.78177257525084,0,7,7,0,6.35491637100862,8.8255369226243,9,0,4,0,6,7,0,0,4,7,0,0,0,0,0,0,0,0 +"897.260070800781",0,0,0,0,0,0,0,0,0,5,10.4423034814977,0,0,0,0,8,0,0,0,0,8,6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,7,5,7,8.78316610925307,0,0,7,8.31435283588768,12.3556766345666,0,0,0,8,0,0,7,0,0,4,8,0,0,0,0,0,0,0,0 +"897.403137207031",0,0,0,0,0,0,0,0,6,4,6.44339829209547,10,0,0,0,8,0,0,0,0,4,6,0,8,0,0,9,0,0,0,7,0,0,0,0,0,0,0,5,0,7,6,6,7.7845596432553,10,7,7,7.31468844389753,7.35719716168272,6.8273021476905,0,0,6,0,5,5,0,0,6,0,0,0,0,6,0,0,0,0 +"897.903930664062",0,0,0,0,0,0,0,0,4,5,4.44514998905189,5,0,0,0,7,0,0,0,0,10,6,0,9,0,0,5,0,0,0,6,0,0,0,0,0,0,0,9,0,7,5,7,6.7876254180602,0,6,6,6.31591900660029,5.35770400405474,7.83289202706678,0,0,4,0,5,6,0,0,6,5,0,9,0,0,0,0,0,0 +"898.404907226562",0,0,0,0,0,0,0,0,7,6,6.44909130720385,10,0,0,0,8,0,0,0,0,5,4,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,6,0,4,6,6,6.79180602006689,0,0,0,0,0,7.83642247719918,10,0,6,0,4,10,0,0,8,6,0,7,0,0,0,0,0,0 +"898.548034667969",0,0,0,0,0,0,0,0,4,4,6.45040507992117,7,0,0,0,6,0,0,0,0,5,4,0,3,0,0,5,0,0,0,7,0,0,0,0,0,0,0,7,0,5,7,4,5.79292084726867,8,10,9,6.31782078532274,7.35998479472884,6.83730508973227,10,0,5,0,4,5,0,0,8,7,0,7,0,0,0,0,0,0 +"898.977600097656",0,0,0,0,0,0,0,0,5,3,9.45347054959492,8,0,0,0,8,0,0,0,0,7,13,0,4,0,0,5,0,0,0,8,0,0,0,0,0,0,0,14,0,5,8,6,24.796265328874,20,25,21,19.3199463027184,30.3622655854029,17.8414239482201,24,0,6,0,4,4,0,0,9,19,25,13,0,10,10,0,0,0 +"899.550476074219",0,0,0,0,0,0,0,0,8,5,9.45609809502956,5,0,0,0,4,0,0,0,0,4,5,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,8,0,5,6,4,8.80100334448161,8,7,7,8.32151247343103,8.36429295489103,8.84436598999706,7,0,5,0,8,7,0,0,5,5,0,8,0,6,0,0,0,0 +"900.051879882812",0,0,0,0,0,0,0,0,8,0,8.45938252682286,9,0,0,0,7,0,0,0,0,7,6,0,4,0,0,5,0,0,0,4,0,0,0,0,0,0,0,9,0,6,9,6,11.8049052396878,9,17,16,8.32285490547041,13.3656867714141,7.84995586937335,16,0,3,0,6,6,0,0,4,12,18,13,0,0,0,9,0,0 +"900.481811523438",0,0,0,0,0,0,0,0,5,4,6.46222903437705,7,0,0,0,6,0,0,0,0,8,5,0,6,0,0,6,0,0,0,3,0,0,0,0,0,0,0,11,0,9,6,5,6.80769230769231,8,7,8,8.32464481485625,12.3674607197162,7.85260370697264,9,0,5,0,7,7,0,0,8,8,0,8,0,0,0,0,0,0 +"901.055114746094",0,0,0,0,0,0,0,0,10,3,0,6,0,0,0,8,0,0,0,0,6,13,0,6,0,0,9,0,0,0,7,0,0,0,0,0,0,0,0,0,8,6,10,16.8121516164994,14,17,12,0,13.3694880892043,10.8573109738158,22,0,6,0,6,9,0,0,7,15,22,7,0,0,0,0,0,0 +"901.234375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,9,0,0,0,0,10,0,0,0,9,0,0,0,0,0,0,0,14,0,6,6,6,7.81410256410256,14,0,10,9.32632285490547,5.37024835276229,8.85848779052663,0,0,5,0,5,0,0,0,8,0,0,7,0,10,11,9,0,0 +"901.377746582031",0,0,0,0,0,0,0,0,10,7,9.46660827676812,8,0,0,0,6,0,0,0,0,7,0,0,6,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,6,6,5,0,0,0,0,11.3272178095984,4.37075519513431,6.86054721977052,0,0,5,0,6,8,0,0,4,9,0,7,0,0,0,0,0,0 +"901.557006835938",0,0,0,0,0,0,0,0,8,3,7.4685789358441,6,0,0,0,6,0,0,0,0,6,7,0,5,0,0,4,0,0,0,5,0,0,0,0,0,0,0,9,0,3,6,4,6.81577480490524,8,7,5,6.32777715628146,7.37151545869235,5.86290085319211,8,0,5,0,5,6,0,0,5,8,0,8,0,0,0,0,0,0 +"902.058959960938",0,0,0,0,0,0,0,0,5,0,0,8,0,0,0,5,0,0,0,0,5,6,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,10,0,0,0,7,5.82079152731327,0,0,9,0,0,0,13,0,5,0,4,6,0,0,0,9,0,7,0,0,0,0,0,0 +"902.202392578125",0,0,0,0,0,0,0,0,8,5,0,9,0,0,0,9,0,0,0,0,0,6,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,10,0,6,8,6,0,11,10,8,10.3296789350039,10.3730359858084,5.86643130332451,8,0,6,0,5,9,0,0,0,8,0,0,0,0,0,0,0,0 +"902.417602539062",0,0,0,0,0,0,0,0,0,5,9.47252025399606,8,0,0,0,0,0,0,0,0,6,6,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,7,0,0,7,0,5.8221850613155,0,0,5,0,0,0,0,0,6,0,5,0,0,0,7,0,0,7,0,0,0,0,0,0 +"902.525207519531",0,0,0,0,0,0,0,0,8,4,7.47470987519159,6,0,0,0,9,0,0,0,0,6,5,0,4,0,0,5,0,0,0,4,0,0,0,0,0,0,0,8,0,5,6,6,6.82552954292085,10,6,5,0,7.37455651292448,6.8687849367461,0,0,4,0,5,4,0,0,5,5,0,7,0,0,0,0,0,0 +"902.991577148438",0,0,0,0,0,0,0,0,8,6,7.47689949638712,6,0,0,0,13,0,0,0,0,8,6,0,5,0,0,6,0,0,0,7,0,0,0,0,0,0,0,11,0,9,5,7,4.82775919732441,8,9,10,0,0,0,10,0,6,0,5,8,0,0,0,12,0,0,0,0,0,0,0,0 +"903.278625488281",0,0,0,0,0,0,0,0,9,5,0,10,0,0,0,7,0,0,0,0,11,7,0,7,0,0,8,0,0,0,7,0,0,0,0,0,0,0,5,0,7,6,8,0,0,0,7,0,11.3767105930056,0,0,0,0,0,7,5,0,0,8,5,0,0,0,0,0,0,0,0 +"903.458068847656",0,0,0,0,0,0,0,0,7,0,7.47974600394132,8,0,0,0,0,0,0,0,0,6,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,6,6,0,7.82998885172798,9,8,0,0,6.37797769893563,0,0,0,6,0,6,0,0,0,7,5,0,0,0,0,0,0,0,0 +"903.565734863281",0,0,0,0,0,0,0,0,7,5,6.48105977665864,7,0,0,0,7,0,0,0,0,5,4,0,7,0,0,4,0,0,0,7,0,0,0,0,0,0,0,5,0,9,5,4,5.83305462653289,0,0,6,0,6.37861125190066,6.87702265372168,8,0,5,0,4,6,0,0,4,0,0,0,0,0,0,0,0,0 +"904.068237304688",0,0,0,0,0,0,0,0,8,5,7.48368732209328,7,0,0,0,0,0,0,0,0,7,7,0,5,0,0,12,0,0,0,8,0,0,0,0,0,0,0,7,0,9,5,6,7.83612040133779,8,0,0,7.33594361785435,7.38025848960973,8.88202412474257,0,0,6,0,5,8,0,0,8,0,0,0,0,0,0,0,0,0 +"904.247802734375",0,0,0,0,0,0,0,0,9,5,7.4854390190497,8,0,0,0,10,0,0,0,0,8,5,0,9,0,0,8,0,0,0,6,0,0,0,0,0,0,0,5,0,7,5,3,7.83779264214047,10,12,7,6.33627922586419,6.38063862138875,6.88320094145337,7,0,7,0,5,6,0,0,7,5,0,0,0,0,0,0,0,0 +"905.037841796875",0,0,0,0,0,0,0,0,7,0,7.48938033720166,13,0,0,0,7,0,0,0,0,6,8,0,6,0,0,8,0,0,0,9,0,0,0,0,0,0,0,6,0,6,7,6,6.84336677814939,0,0,8,8.33840474325987,8.38317283324886,9.89055604589585,0,0,8,0,9,9,0,0,5,9,0,7,0,0,0,0,0,0 +"905.217468261719",0,0,0,0,0,0,0,0,7,5,12.4909130720385,6,0,0,0,7,0,0,0,0,5,9,0,7,0,0,8,0,0,0,5,0,0,0,0,0,0,0,6,0,6,8,6,5.84503901895206,11,9,7,6.33907595927956,10.3843132285859,6.89143865842895,7,0,6,0,8,11,0,0,6,9,0,0,0,0,0,0,0,0 +"905.540771484375",0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,5,0,0,0,0,0,0,0,6,0,0,5,0,0,0,11,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,7.38494678155094,0,7,0,0,0,10,7,0,0,5,6,0,0,0,0,10,0,0,0 +"905.684509277344",0,0,0,0,0,0,0,0,5,3,7.49354061747318,6,0,0,0,6,0,0,0,0,5,5,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,5,0,4,4,7,5.84782608695652,0,7,0,0,6.38570704510897,4.89585172109444,7,0,4,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0 +"905.93603515625",0,0,0,0,0,0,0,0,7,4,10.4959492007883,9,0,0,0,8,0,0,0,0,7,8,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,9,0,8,7,7,7.85117056856187,0,7,5,8.34187269269493,5.38621388748099,0,7,0,6,0,5,7,0,0,5,8,0,8,0,6,0,0,0,0 +"906.475219726562",0,0,0,0,0,0,0,0,12,7,11.4987957083425,10,0,0,0,8,0,0,0,0,9,4,0,7,0,0,9,0,0,0,5,0,0,0,0,0,0,0,5,0,15,6,7,21.8547937569677,35,27,23,17.3428795167245,16.3886213887481,11.9014416004707,45,0,5,0,5,10,0,0,18,29,102,29,0,22,39,25,0,0 +"907.014526367188",0,0,0,0,0,0,0,0,16,10,25.5014232537771,48,0,0,0,30,0,0,0,0,22,30,0,21,0,0,15,0,0,0,7,0,0,0,0,0,0,0,7,0,19,10,10,6.85841694537347,10,8,7,12.3446694261103,0,10.907031479847,7,0,11,0,8,6,0,0,0,10,0,9,0,0,0,0,0,0 +"907.446044921875",0,0,0,0,0,0,0,0,13,5,12.5036128749726,9,0,0,0,8,0,0,0,0,12,5,0,5,0,0,9,0,0,0,8,0,0,0,0,0,0,0,4,0,10,7,7,12.8628762541806,19,19,18,16.3460118581497,10.3917891535732,10.909973521624,25,0,10,0,7,8,0,0,10,25,58,14,0,12,18,11,0,0 +"907.985656738281",0,0,0,0,0,0,0,0,10,11,19.5075541931246,27,0,0,0,20,0,0,0,0,18,17,0,8,0,0,15,0,0,0,8,0,0,0,0,0,0,0,6,0,9,14,10,7.86705685618729,8,12,0,9.3476898981989,12.3939432336543,6.9149749926449,7,0,14,0,6,8,0,0,5,7,0,9,0,0,0,0,0,0 +"908.417419433594",0,0,0,0,0,0,0,0,8,6,9.51061966279834,10,0,0,0,8,0,0,0,0,9,8,0,7,0,0,6,0,0,0,8,0,0,0,0,0,0,0,10,0,10,8,6,7.8701226309922,10,9,10,8.34925606891151,9.39533705017739,6.91791703442189,14,0,7,0,8,6,0,0,5,12,29,10,0,6,16,10,0,0 +"908.957336425781",0,0,0,0,0,0,0,0,3,6,12.5134661703525,22,0,0,0,14,0,0,0,0,11,15,0,13,0,0,12,0,0,0,5,0,0,0,0,0,0,0,35,0,12,13,7,6.87402452619844,9,7,8,7.35037476227766,8.3977445514445,6.92262430126508,8,0,9,0,5,11,0,0,7,7,0,7,0,7,0,0,0,0 +"909.281311035156",0,0,0,0,0,0,0,0,10,5,0,9,0,0,0,8,0,0,0,0,10,7,0,9,0,0,13,0,0,0,7,0,0,0,0,0,0,0,0,0,7,7,4,0,0,7,10,0,4.39837810440953,7.92438952633127,9,0,4,0,5,9,0,0,5,7,0,0,0,0,0,0,0,0 +"909.461364746094",0,0,0,0,0,0,0,0,11,4,6.51565579154806,6,0,0,0,6,0,0,0,0,5,4,0,7,0,0,5,0,0,0,6,0,0,0,0,0,0,0,8,0,6,5,4,6.87820512820513,10,6,6,7.35238841033673,0,8.92615475139747,8,0,4,0,5,6,0,0,5,10,0,0,0,0,11,0,0,0 +"910.145629882812",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,9,7,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,18,0,0,8,0,0,0,0,0,0,0,7.93174463077376,7,0,8,0,0,6,0,0,7,9,0,0,0,0,0,0,0,0 +"910.253662109375",0,0,0,0,0,0,0,0,0,4,9.52069192029779,7,0,0,0,0,0,0,0,0,9,7,0,6,0,0,10,0,0,0,5,0,0,0,0,0,0,0,0,0,9,6,10,7.88405797101449,14,7,6,6.35451392773241,9.40154586923467,9.93321565166225,0,0,8,0,7,0,0,0,7,6,0,0,0,0,0,0,0,0 +"910.397766113281",0,0,0,0,0,0,0,0,9,6,9.52222465513466,4,0,0,0,11,0,0,0,0,4,6,0,5,0,0,9,0,0,0,5,0,0,0,0,0,0,0,10,0,6,6,7,7.88545150501672,10,9,6,8.35574449043517,6.40243284338571,6.93498087672845,8,0,6,0,7,7,0,0,7,5,0,7,0,0,0,0,0,0 +"911.04638671875",0,0,0,0,0,0,0,0,11,7,18.5259470111671,11,0,0,0,22,0,0,0,0,17,8,0,11,0,0,9,0,0,0,12,0,0,0,0,0,0,0,15,0,12,14,10,14.8904682274247,21,11,17,18.3570869224746,15.4044602128738,17.9390997352162,17,0,17,0,14,16,0,0,14,10,17,9,0,6,12,0,0,0 +"911.262634277344",0,0,0,0,0,0,0,0,8,4,9.52747974600394,8,0,0,0,7,0,0,0,0,8,7,0,4,0,0,7,0,0,0,10,0,0,0,0,0,0,0,8,0,7,8,7,8.89269788182832,11,10,9,8.35854122385054,7.40547389761784,9.94145336863783,9,0,6,0,4,9,0,0,4,9,0,7,0,0,10,0,0,0 +"911.983581542969",0,0,0,0,0,0,0,0,7,8,11.5325158747537,13,0,0,0,15,0,0,0,0,9,5,0,8,0,0,8,0,0,0,13,0,0,0,0,0,0,0,11,0,16,11,10,14.8971571906355,16,12,12,14.3602192638998,18.408008109478,22.9473374521918,20,0,5,0,12,15,0,0,14,14,18,10,0,6,13,9,0,0 +"912.524536132812",0,0,0,0,0,0,0,0,7,5,10.5349244580688,8,0,0,0,10,0,0,0,0,5,3,0,4,0,0,8,0,0,0,5,0,0,0,0,0,0,0,8,0,6,10,7,0,16,12,9,0,19.409908768373,0,10,0,7,0,6,12,0,0,8,5,0,9,0,8,12,11,0,0 +"912.993469238281",0,0,0,0,0,0,0,0,94,53,127.538208889862,228,0,0,0,306,0,0,0,0,58,56,0,101,0,0,91,0,0,0,169,0,0,0,0,0,0,0,42,0,183,143,124,144.904960981048,279,180,296,185.363351605325,206.411556006082,252.955575169167,211,0,125,0,182,237,0,0,209,166,164,52,0,40,117,36,0,0 +"914.00390625",0,0,0,0,0,0,0,0,42,21,49.5443398292095,116,0,0,0,146,0,0,0,0,28,28,0,43,0,0,54,0,0,0,92,0,0,0,0,0,0,0,23,0,96,68,67,83.9127647714604,134,77,141,110.36648394675,117.415103902686,142.963812886143,121,0,58,0,116,114,0,0,115,90,88,30,0,20,64,25,0,0 +"914.61767578125",0,0,0,0,0,0,0,0,7,5,6.54740529888329,10,0,0,0,8,0,0,0,0,5,7,0,4,0,0,6,0,0,0,6,0,0,0,0,0,0,0,6,0,8,11,10,14.9169453734671,12,12,11,12.3679382481262,13.4176381145464,14.9688143571639,16,0,8,0,11,10,0,0,11,10,0,11,0,8,11,0,0,0 +"915.014953613281",0,0,0,0,0,0,0,0,18,13,27.5506897306766,36,0,0,0,48,0,0,0,0,10,11,0,16,0,0,19,0,0,0,35,0,0,0,0,0,0,0,14,0,26,38,33,28.9211259754738,53,34,44,38.3693925495022,47.4186517992904,48.9723448072963,35,0,34,0,32,42,0,0,34,37,37,12,0,8,28,10,0,0 +"915.520629882812",0,0,0,0,0,0,0,0,5,4,7.55331727611123,7,0,0,0,9,0,0,0,0,9,6,0,9,0,0,4,0,0,0,9,0,0,0,0,0,0,0,6,0,6,9,7,8.92530657748049,12,7,8,9.37118245888802,12.4204257475925,9.97646366578405,9,0,9,0,9,9,0,0,7,10,0,10,0,7,0,0,0,0 +"916.098754882812",0,0,0,0,0,0,0,0,8,5,11.5566017079045,16,0,0,0,15,0,0,0,0,10,6,0,6,0,0,10,0,0,0,15,0,0,0,0,0,0,0,9,0,17,10,15,16.9297658862876,22,23,24,22.3730842376105,26.4224531170806,36.9808767284495,24,0,15,0,16,13,0,0,12,13,27,20,0,6,27,13,0,0 +"916.460205078125",0,0,0,0,0,0,0,0,7,10,9.55922925333917,7,0,0,0,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,9,0,7,7,5,0,8,8,8,0,13.4232133806386,7.98352456604884,8,0,4,0,11,9,0,0,8,6,0,8,0,0,0,10,0,0 +"916.640930175781",0,0,0,0,0,0,0,0,5,6,8.56010510181738,5,0,0,0,8,0,0,0,0,6,6,0,7,0,0,9,0,0,0,6,0,0,0,0,0,0,0,8,0,4,6,5,6.93283166109253,8,8,6,6.37409106164,8.42422706538267,10.9867608120035,0,0,4,0,5,6,0,0,8,8,0,7,0,9,10,0,0,0 +"917.110900878906",0,0,0,0,0,0,0,0,0,5,11.562732647252,11,0,0,0,13,0,0,0,0,6,5,0,9,0,0,9,0,0,0,10,0,0,0,0,0,0,0,6,0,9,8,10,0,13,14,10,14.3761047096991,16.4261277242777,16.9888202412474,10,0,0,0,7,8,0,0,7,12,0,0,0,7,18,0,0,0 +"917.291748046875",0,0,0,0,0,0,0,0,10,7,10.5636084957302,5,0,0,0,9,0,0,0,0,13,5,0,5,0,0,7,0,0,0,10,0,0,0,0,0,0,0,11,0,4,13,6,10.9375696767001,0,10,7,8.37688779505537,6.42676127724278,10.991173874669,0,0,7,0,6,7,0,0,7,8,0,9,0,0,13,10,0,0 +"917.508728027344",0,0,0,0,0,0,0,0,4,3,5.56536019268666,6,0,0,0,5,0,0,0,0,4,5,0,6,0,0,7,0,0,0,5,0,0,0,0,0,0,0,8,0,5,9,3,6.93952062430323,12,6,6,7.37755901107506,0,5.99235069137982,8,0,7,0,4,7,0,0,5,7,0,0,0,0,0,0,0,0 +"917.798095703125",0,0,0,0,0,0,0,0,6,5,7.56689292752354,11,0,0,0,8,0,0,0,0,5,8,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,8,0,5,5,6,6.94147157190635,8,0,5,0,7.42777496198682,8.99499852897911,0,0,7,0,6,8,0,0,7,6,0,9,0,0,0,0,0,0 +"918.232177734375",0,0,0,0,0,0,0,0,8,6,8.57017735931684,9,0,0,0,8,0,0,0,0,6,8,0,8,0,0,7,0,0,0,8,0,0,0,0,0,0,0,8,0,8,7,6,8.94620958751394,8,8,10,12.3795726591341,8.43005575266092,7.9985289791115,8,0,11,0,7,8,0,0,6,6,0,8,0,10,13,0,0,0 +"918.883544921875",0,0,0,0,0,0,0,0,5,5,7.5741186774688,7,0,0,0,7,0,0,0,0,4,12,0,10,0,0,7,0,0,0,9,0,0,0,0,0,0,0,5,0,8,7,7,4.94927536231884,0,0,5,7.38181004586643,6.43220983274202,0,0,0,4,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0 +"919.173095703125",0,0,0,0,0,0,0,0,7,7,6.57499452594701,8,0,0,0,8,0,0,0,0,7,4,0,9,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,8,8,6,0,9,6,6,0,10.4333502280791,9,8,0,4,0,4,0,0,0,5,5,0,0,0,0,0,0,0,0 +"919.390319824219",0,0,0,0,0,0,0,0,7,4,9.57718414714254,7,0,0,0,5,0,0,0,0,9,3,0,6,0,0,8,0,0,0,7,0,0,0,0,0,0,0,3,0,5,5,6,4.95457079152731,10,7,6,7.38326434724242,5.4339837810441,0,0,0,4,0,4,9,0,0,7,5,0,0,0,0,0,0,0,0 +"919.643798828125",0,0,0,0,0,0,0,0,5,4,0,5,0,0,0,6,0,0,0,0,0,3,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,5,0,3,3,5,3.95540691192865,0,8,7,0,0,8,0,0,4,0,4,6,0,0,5,0,0,7,0,6,0,0,0,0 +"919.861022949219",0,0,0,0,0,0,0,0,5,7,6.57915480621852,4,0,0,0,6,0,0,0,0,5,5,0,7,0,0,6,0,0,0,5,0,0,0,0,0,0,0,8,0,4,7,5,0,0,7,7,7.3846067792818,4.43537759756716,8,7,0,4,0,5,5,0,0,4,5,0,0,0,0,0,0,0,0 +"920.114562988281",0,0,0,0,0,0,0,0,8,4,5.58046857893584,4,0,0,0,9,0,0,0,0,6,6,0,5,0,0,6,0,0,0,8,0,0,0,0,0,0,0,8,0,7,4,3,6.96070234113712,9,7,7,0,0,6,0,0,6,0,5,5,0,0,5,9,0,0,0,0,10,0,0,0 +"920.440551757812",0,0,0,0,0,0,0,0,5,5,7.58309612437048,8,0,0,0,8,0,0,0,0,5,6,0,5,0,0,4,0,0,0,9,0,0,0,0,0,0,0,6,0,4,4,4,7.96293199554069,8,7,6,12.3863966886676,10.4376583882413,9,12,0,6,0,9,4,0,0,7,7,0,9,0,10,0,0,0,0 +"921.165161132812",0,0,0,0,0,0,0,0,10,6,10.5883512152398,9,0,0,0,8,0,0,0,0,7,7,0,7,0,0,8,0,0,0,9,0,0,0,0,0,0,0,5,0,6,6,6,3.96739130434783,9,7,5,0,0,6,8,0,7,0,9,7,0,0,7,6,0,8,0,7,0,0,0,0 +"921.491333007812",0,0,0,0,0,0,0,0,9,4,7.58922706371798,6,0,0,0,7,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,8,0,0,0,0,0,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"921.600036621094",0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,6,0,0,5,0,0,6,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,7,6.97073578595318,0,8,9,0,7.44171312721744,7,0,0,5,0,0,7,0,0,6,5,0,0,0,6,0,0,0,0 +"921.708801269531",0,0,0,0,0,0,0,0,8,4,6.59032187431574,7,0,0,0,5,0,0,0,0,5,3,0,7,0,0,6,0,0,0,5,0,0,0,0,0,0,0,6,0,4,6,5,0,8,6,5,7.38975276876608,4.44209325899645,8,8,0,5,0,7,5,0,0,4,0,0,10,0,6,0,0,0,0 +"922.47021484375",0,0,0,0,0,0,0,0,6,5,6.59513904094592,8,0,0,0,6,0,0,0,0,5,6,0,4,0,0,9,0,0,0,7,0,0,0,0,0,0,0,9,0,6,5,14,13.9782608695652,34,16,19,9.39266137151807,9.44500760263558,11,21,0,6,0,5,5,0,0,24,25,28,10,0,8,12,0,0,0 +"923.231872558594",0,0,0,0,0,0,0,0,11,3,13.5999562075761,11,0,0,0,7,0,0,0,0,4,3,0,7,0,0,6,0,0,0,8,0,0,0,0,0,0,0,5,0,0,7,8,4.98411371237458,8,0,6,7.39478688891375,10.4477952356817,8,0,0,8,0,5,9,0,0,9,5,0,7,0,7,10,0,0,0 +"923.449584960938",0,0,0,0,0,0,0,0,8,3,12.6019268666521,6,0,0,0,4,0,0,0,0,6,3,0,5,0,0,6,0,0,0,7,0,0,0,0,0,0,0,5,0,5,7,11,6.98550724637681,13,13,11,7.39579371294328,9.44830207805373,7,24,0,5,0,6,9,0,0,13,13,0,0,0,6,0,0,0,0 +"923.776184082031",0,0,0,0,0,0,0,0,9,0,5.60280271513028,8,0,0,0,7,0,0,0,0,4,3,0,5,0,0,8,0,0,0,5,0,0,0,0,0,0,0,8,0,3,7,7,5.98940914158305,8,7,5,0,8.44931576279777,5,0,0,3,0,7,3,0,0,4,7,0,7,0,0,0,0,0,0 +"924.4658203125",0,0,0,0,0,0,0,0,7,4,9.60783884388001,4,0,0,0,5,0,0,0,0,11,4,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,5,5,4,5.99414715719064,10,7,5,9.39859044635865,7.45159655347187,9,12,0,8,0,3,5,0,0,9,7,16,0,0,7,0,0,0,0 +"924.937805175781",0,0,0,0,0,0,0,0,7,5,0,11,0,0,0,8,0,0,0,0,5,4,0,0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,5,0,5,0,7,7.99749163879599,12,8,7,0,0,7,12,0,8,0,8,12,0,0,6,8,0,0,0,0,0,0,0,0 +"925.119384765625",0,0,0,0,0,0,0,0,6,5,8.6106853514342,8,0,0,0,8,0,0,0,0,5,5,0,6,0,0,5,0,0,0,10,0,0,0,0,0,0,0,9,0,5,6,4,0,8,7,6,0,7.45375063355297,11,9,0,5,0,7,6,0,0,5,5,0,0,0,0,0,0,0,0 +"925.337280273438",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,6,0,0,0,0,0,0,0,6,0,5,7,0,6.99944258639911,0,0,0,0,4.454510897111,7,0,0,0,0,6,6,0,0,8,0,0,0,0,0,0,0,0,0 +"925.446228027344",0,0,0,0,0,0,0,0,12,0,7.61309393474929,10,0,0,0,6,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,4,0,0,8,5,7.40138717977402,0,0,0,0,6,0,6,5,0,0,0,8,0,7,0,0,0,0,0,0 +"925.555236816406",0,0,0,0,0,0,0,0,6,3,6.61440770746661,5,0,0,0,7,0,0,0,0,7,6,0,7,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,6,5,4,0,0,8,9,0,5.45539787126204,5,7,0,7,0,6,7,0,0,6,7,0,0,0,0,0,0,0,0 +"925.845825195312",0,0,0,0,0,0,0,0,0,5,4.61506459382527,5,0,0,0,5,0,0,0,0,3,5,0,3,0,0,6,0,0,0,7,0,0,0,0,0,0,0,5,0,5,5,8,10,8,8,5,9.40306521982325,9.45666497719209,6,8,0,5,0,4,7,0,0,6,8,0,8,0,0,0,0,0,0 +"926.281860351562",0,0,0,0,0,0,0,0,7,7,10.6183490256186,7,0,0,0,6,0,0,0,0,6,6,0,4,0,0,7,0,0,0,6,0,0,0,0,0,0,0,6,0,9,7,4,6,0,9,8,7.40429578252601,7.45818550430816,6,7,0,8,0,8,8,0,0,5,7,0,8,0,0,0,0,0,0 +"926.972412109375",0,0,0,0,0,0,0,0,8,6,6.62185241953142,9,0,0,0,9,0,0,0,0,6,6,0,6,0,0,7,0,0,0,9,0,0,0,0,0,0,0,10,0,7,9,7,6,10,7,6,0,6.46021287379625,6,8,0,7,0,7,8,0,0,5,8,0,7,0,7,0,9,0,0 +"927.445068359375",0,0,0,0,0,0,0,0,9,6,9.62535581344427,8,0,0,0,5,0,0,0,0,8,9,0,8,0,0,8,0,0,0,7,0,0,0,0,0,0,0,6,0,4,9,6,8,41,44,14,25.4079874706343,13.4622402432843,18,27,0,6,0,3,5,0,0,6,26,319,114,0,79,146,148,0,0 +"928.463439941406",0,0,0,0,0,0,0,0,9,5,9.63126779067221,7,0,0,0,9,0,0,0,0,6,5,0,4,0,0,7,0,0,0,5,0,0,0,0,0,0,0,7,0,6,6,10,16,28,36,23,27.4111198120595,13.4657881398885,21,34,0,6,0,13,7,0,0,9,32,195,69,0,48,102,79,0,0 +"929.00927734375",0,0,0,0,0,0,0,0,13,12,18.6349901467046,29,0,0,0,54,0,0,0,0,32,62,0,24,0,0,18,0,0,0,13,0,0,0,0,0,0,0,66,0,50,11,16,11,19,12,16,16.4125741134355,13.4676887987836,17,11,0,25,0,10,25,0,0,9,10,0,0,0,9,11,0,0,0 +"929.446044921875",0,0,0,0,0,0,0,0,8,6,7.63674184366105,6,0,0,0,12,0,0,0,0,12,5,0,7,0,0,6,0,0,0,7,0,0,0,0,0,0,0,9,0,5,7,6,9,14,14,11,11.4141402841481,11.4695894576787,12,18,0,5,0,5,7,0,0,5,16,76,36,0,22,44,22,0,0 +"929.992126464844",0,0,0,0,0,0,0,0,10,10,13.6404641996935,18,0,0,0,34,0,0,0,0,28,28,0,17,0,0,17,0,0,0,10,0,0,0,0,0,0,0,51,0,23,8,9,14,14,10,12,18.4158183241973,0,10,11,0,13,0,10,17,0,0,9,13,0,10,0,6,0,9,0,0 +"930.429138183594",0,0,0,0,0,0,0,0,10,0,9.64331070724765,6,0,0,0,6,0,0,0,0,15,9,0,7,0,0,6,0,0,0,4,0,0,0,0,0,0,0,6,0,6,7,4,5,11,12,11,0,8.47250380131779,0,11,0,7,0,5,6,0,0,0,0,20,13,0,9,14,13,0,0 +"930.68408203125",0,0,0,0,0,0,0,0,4,5,5.64418655572586,0,0,0,0,6,0,0,0,0,5,5,0,4,0,0,4,0,0,0,5,0,0,0,0,0,0,0,6,0,4,5,6,5,0,8,7,7.41749636424656,0,6,9,0,7,0,5,6,0,0,6,11,0,0,0,9,12,0,0,0 +"931.011901855469",0,0,0,0,0,0,0,0,6,7,0,11,0,0,0,14,0,0,0,0,13,12,0,10,0,0,11,0,0,0,5,0,0,0,0,0,0,0,21,0,14,8,7,8,10,10,6,9.41906253495917,8.47440446021287,9,7,0,9,0,10,0,0,0,8,0,0,0,0,6,0,0,0,0 +"931.194091796875",0,0,0,0,0,0,0,0,7,7,7.64725202539961,0,0,0,0,9,0,0,0,0,13,8,0,7,0,0,10,0,0,0,10,0,0,0,0,0,0,0,13,0,5,6,0,8,10,0,5,0,0,4,11,0,11,0,5,10,0,0,0,8,0,7,0,0,10,0,0,0 +"931.33984375",0,0,0,0,0,0,0,0,7,4,8.64900372235603,9,0,0,0,7,0,0,0,0,9,7,0,7,0,0,5,0,0,0,6,0,0,0,0,0,0,0,8,0,7,6,8,7,9,8,9,10.4198456203155,0,4,0,0,4,0,5,0,0,0,4,0,0,9,0,7,0,0,0,0 +"931.558471679688",0,0,0,0,0,0,0,0,7,3,0,7,0,0,0,0,0,0,0,0,6,0,0,5,0,0,5,0,0,0,4,0,0,0,0,0,0,0,9,0,0,4,5,0,0,9,0,0,0,0,9,0,0,0,6,7,0,0,6,9,15,0,0,0,11,0,0,0 +"931.704223632812",0,0,0,0,0,0,0,0,5,6,5.6500985329538,5,0,0,0,6,0,0,0,0,6,7,0,5,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,4,5,0,9,5,0,7.47643182970096,7,8,0,9,0,5,7,0,0,6,0,0,9,0,0,0,0,0,0 +"932.032287597656",0,0,0,0,0,0,0,0,6,6,11.6533829647471,6,0,0,0,7,0,0,0,0,9,13,0,8,0,0,7,0,0,0,7,0,0,0,0,0,0,0,17,0,8,4,6,7,9,7,6,6.42174739903792,4.47795235681703,7,11,0,6,0,6,9,0,0,5,7,0,0,0,0,0,0,0,0 +"932.4697265625",0,0,0,0,0,0,0,0,6,4,8.65644843442085,4,0,0,0,7,0,0,0,0,6,5,0,5,0,0,5,0,0,0,4,0,0,0,0,0,0,0,10,0,7,5,6,8,10,7,9,8.42376104709699,6.4795995945261,5,0,0,6,0,8,6,0,0,6,6,15,10,0,9,12,10,0,0 +"932.943786621094",0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,8,0,0,5,0,0,6,0,0,6,0,0,0,0,0,4,5,0,7,0,0,0,0,0,0 +"933.05322265625",0,0,0,0,0,0,0,0,8,3,6.65907597985549,5,0,0,0,12,0,0,0,0,10,3,0,7,0,0,6,0,0,0,5,0,0,0,0,0,0,0,12,0,7,6,7,0,0,7,7,6.42487974046314,6.48124683223517,7,9,0,5,0,6,6,0,0,6,6,0,0,0,6,0,0,0,0 +"933.308532714844",0,0,0,0,0,0,0,0,10,3,10.6603897525728,11,0,0,0,6,0,0,0,0,10,6,0,6,0,0,4,0,0,0,6,0,0,0,0,0,0,0,8,0,7,11,8,7,0,0,7,8.42566282581944,11.4825139381652,6,8,0,8,0,6,8,0,0,9,6,0,7,0,10,0,0,0,0 +"933.563903808594",0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,6,0,0,0,0,4,5,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,6,7,6,0,8,0,0,8.48289406994425,5,0,0,0,0,0,8,0,0,0,0,0,9,0,0,0,0,0,0 +"933.67333984375",0,0,0,0,0,0,0,0,6,4,0,8,0,0,0,8,0,0,0,0,6,4,0,5,0,0,7,0,0,0,6,0,0,0,0,0,0,0,5,0,4,6,3,6,0,6,6,6.42700525785882,7.4841611758743,4,7,0,4,0,5,7,0,0,5,5,0,0,0,9,0,0,0,0 +"934.001708984375",0,0,0,0,0,0,0,0,6,4,7.66476899496387,7,0,0,0,8,0,0,0,0,5,5,0,6,0,0,5,0,0,0,8,0,0,0,0,0,0,0,5,0,6,7,6,7,11,7,8,11.4283476898982,5.48454130765332,8,7,0,4,0,4,4,0,0,5,5,0,0,0,6,0,0,0,0 +"934.257141113281",0,0,0,0,0,0,0,0,7,6,9.6665206919203,8,0,0,0,7,0,0,0,0,12,6,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,8,0,7,9,7,4,9,6,5,9.42879516724466,7.48555499239736,5,0,0,4,0,6,7,0,0,5,6,0,0,0,0,0,0,0,0 +"934.476135253906",0,0,0,0,0,0,0,0,7,4,8.66761550251806,7,0,0,0,5,0,0,0,0,8,6,0,5,0,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,4,6,4,4,9,6,6,7.42946638326435,12.4861885453624,8,0,0,3,0,5,5,0,0,4,7,0,8,0,6,0,0,0,0 +"934.987182617188",0,0,0,0,0,0,0,0,8,7,8.67046201007226,8,0,0,0,11,0,0,0,0,5,6,0,4,0,0,8,0,0,0,5,0,0,0,0,0,0,0,6,0,10,7,5,10,9,6,6,11.4312562926502,7.48796249366447,11,9,0,4,0,6,7,0,0,7,8,0,9,0,7,0,0,0,0 +"935.315795898438",0,0,0,0,0,0,0,0,10,5,9.67265163126779,10,0,0,0,8,0,0,0,0,8,4,0,8,0,0,6,0,0,0,5,0,0,0,0,0,0,0,4,0,7,7,7,8,10,13,7,11.4321512473431,8.48960973137354,6,7,0,8,0,10,8,0,0,7,7,0,7,0,0,0,0,0,0 +"935.607971191406",0,0,0,0,0,0,0,0,9,5,6.67462229034377,7,0,0,0,4,0,0,0,0,6,5,0,4,0,0,5,0,0,0,7,0,0,0,0,0,0,0,7,0,6,6,6,8,9,7,6,0,0,7,8,0,5,0,7,6,0,0,8,6,0,8,0,6,0,0,0,0 +"936.009765625",0,0,0,0,0,0,0,0,7,4,0,7,0,0,0,3,0,0,0,0,7,6,0,4,0,0,6,0,0,0,8,0,0,0,0,0,0,0,6,0,0,9,5,7,8,6,7,7.4343886340754,8.49151039026863,15,11,0,7,0,8,9,0,0,12,6,0,7,0,6,10,0,0,0 +"936.338500976562",0,0,0,0,0,0,0,0,11,4,10.6783446463762,9,0,0,0,9,0,0,0,0,5,9,0,8,0,0,5,0,0,0,10,0,0,0,0,0,0,0,3,0,8,8,6,8,9,9,7,0,8.49277749619868,7,10,0,6,0,10,9,0,0,6,7,0,9,0,0,0,0,0,0 +"936.594299316406",0,0,0,0,0,0,0,0,5,5,6.6796584190935,9,0,0,0,5,0,0,0,0,5,7,0,5,0,0,3,0,0,0,6,0,0,0,0,0,0,0,4,0,4,8,6,9,0,7,5,6.43606667412462,9.49391789153573,8,8,0,5,0,6,6,0,0,5,7,0,0,0,0,0,0,0,0 +"936.996276855469",0,0,0,0,0,0,0,0,5,4,8.68250492664769,9,0,0,0,8,0,0,0,0,7,5,0,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,6,0,8,6,7,5,8,6,8,7.43752097550062,9.4954384186518,10,7,0,5,0,7,7,0,0,7,9,0,7,0,0,0,0,0,0 +"937.215576171875",0,0,0,0,0,0,0,0,8,3,10.6844755857237,7,0,0,0,8,0,0,0,0,9,6,0,6,0,0,4,0,0,0,10,0,0,0,0,0,0,0,5,0,4,7,8,0,0,9,0,0,0,7,0,0,4,0,4,7,0,0,10,8,0,0,0,0,0,0,0,0 +"937.398376464844",0,0,0,0,0,0,0,0,7,4,0,7,0,0,0,0,0,0,0,0,3,3,0,6,0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,6,5,6,6,8,6,8,6.4381921915203,8.49645210339584,8,7,0,4,0,4,6,0,0,6,0,0,0,0,7,0,0,0,0 +"937.544616699219",0,0,0,0,0,0,0,0,5,4,9.68535143420188,7,0,0,0,7,0,0,0,0,3,4,0,4,0,0,5,0,0,0,6,0,0,0,0,0,0,0,9,0,5,5,4,6,8,6,5,5.43908714621322,6.49721236695388,7,0,0,4,0,8,6,0,0,6,6,0,7,0,0,0,0,0,0 +"938.056518554688",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,7,0,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,0,0,8,4,0,0,9,8,0,7.49873289406994,8,0,0,5,0,5,8,0,0,9,0,0,0,0,0,0,9,0,0 +"938.202758789062",0,0,0,0,0,0,0,0,5,4,0,9,0,0,0,5,0,0,0,0,6,7,0,0,0,0,6,0,0,0,7,0,0,0,0,0,0,0,7,0,7,7,4,7,9,0,6,7.4404295782526,0,7,7,0,5,0,0,8,0,0,6,5,0,0,0,7,0,0,0,0 +"938.385620117188",0,0,0,0,0,0,0,0,5,0,7.69016860083206,8,0,0,0,4,0,0,0,0,6,0,0,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,5,7,0,7,0,0,7.49974657881399,0,0,0,0,0,6,7,0,0,6,5,0,0,0,0,0,0,0,0 +"938.495361328125",0,0,0,0,0,0,0,0,5,5,0,5,0,0,0,4,0,0,0,0,5,8,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,6,0,5,5,4,6,0,0,6,8.44166014095536,0,6,0,0,4,0,4,4,0,0,7,5,0,0,0,0,0,0,0,0 +"939.044128417969",0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,9,6,0,3,0,0,6,0,0,0,9,0,0,0,0,0,0,0,5,0,7,0,7,8,0,0,0,7.44333818100459,11.5021540800811,10,0,0,5,0,7,7,0,0,6,0,0,7,0,0,0,0,0,0 +"939.190490722656",0,0,0,0,0,0,0,0,7,4,8.69498576746223,7,0,0,0,0,0,0,0,0,0,7,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,0,8,9,7,6,8,8,9,0,9.50278763304612,0,0,0,6,0,7,0,0,0,7,7,0,7,0,0,10,0,0,0 +"939.336853027344",0,0,0,0,0,0,0,0,13,0,0,5,0,0,0,8,0,0,0,0,8,4,0,0,0,0,5,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,0,5,0,0,7,0,6.50354789660416,8,0,0,0,0,6,4,0,0,6,7,0,0,0,0,0,0,0,0 +"939.446655273438",0,0,0,0,0,0,0,0,7,7,7.69673746441866,5,0,0,0,0,0,0,0,0,6,4,0,8,0,0,5,0,0,0,6,0,0,0,0,0,0,0,6,0,8,6,6,9,8,6,5,0,0,0,7.00331674958541,0,6,0,5,6,0,0,4,7,0,0,0,8,0,0,0,0 +"939.666198730469",0,0,0,0,0,0,0,0,3,5,0,6,0,0,0,8,0,0,0,0,6,7,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,7,0,6,6,6,0,0,7,0,9.44512809039042,4.50392802838317,10,0,0,0,0,4,8,0,0,4,0,0,0,0,0,0,0,0,0 +"939.849243164062",0,0,0,0,0,0,0,0,4,4,5.69914604773374,6,0,0,0,6,0,0,0,0,6,5,0,6,0,0,6,0,0,0,8,0,0,0,0,0,0,0,9,0,5,5,6,8,8,6,6,8.44613491441996,0,6,0,0,7,0,4,3,0,0,6,5,0,0,0,6,0,0,0,0 +"940.288513183594",0,0,0,0,0,0,0,0,9,7,11.702430479527,5,0,0,0,7,0,0,0,0,7,5,0,7,0,0,5,0,0,0,12,0,0,0,0,0,0,0,7,0,4,6,5,8,0,10,6,8.44680613043965,5.50658895083629,9,0,0,5,0,9,5,0,0,6,8,0,9,0,0,0,0,0,0 +"941.094177246094",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,9,7,6,0,0,0,7,8.44971473319163,6.50937658388241,6,0,0,4,0,7,6,0,0,4,5,0,0,0,6,0,0,0,0 +"941.2041015625",0,0,0,0,0,0,0,0,8,5,8.70856141887453,6,0,0,0,6,0,0,0,0,6,3,0,7,0,0,5,0,0,0,6,0,0,0,0,0,0,0,8,0,4,7,5,8,0,8,7,6.45049781854794,5.51001013684744,9,0,0,6,0,7,4,0,0,6,6,0,10,0,0,0,0,0,0 +"941.423889160156",0,0,0,0,0,0,0,0,7,4,6.7092183052332,8,0,0,0,7,0,0,0,0,5,5,0,5,0,0,4,0,0,0,6,0,0,0,0,0,0,0,9,0,6,7,5,7,0,6,5,5.45116903456763,6.51064368981247,7,7.01610992655769,0,6,0,5,4,0,0,7,6,0,0,0,0,0,0,0,0 +"941.826904296875",0,0,0,0,0,0,0,0,5,5,0,6,0,0,0,5,0,0,0,0,6,4,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,6,0,4,5,5,6,0,0,5,5.45206398926054,0,8,0,0,4,0,5,5,0,0,4,0,0,0,0,0,0,0,0,0 +"942.046752929688",0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,5,0,0,0,0,0,9,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,4,0,7,0,0,0,0,5.45262333594362,0,5,0,0,4,0,5,5,0,0,6,0,0,7,0,0,0,0,0,0 +"942.156677246094",0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,6,0,0,0,0,6,5,0,7,0,0,4,0,0,0,8,0,0,0,0,0,0,0,5,0,7,8,6,9,9,6,5,6.45318268262669,8.51343132285859,5,0,0,3,0,5,6,0,0,5,7,0,0,0,6,0,0,0,0 +"942.413269042969",0,0,0,0,0,0,0,0,10,0,7.71447339610247,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,4,5,7,0,6,5,0,0,5,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0 +"942.523254394531",0,0,0,0,0,0,0,0,5,9,4.71578716881979,6,0,0,0,5,0,0,0,0,7,5,0,6,0,0,5,0,0,0,4,0,0,0,0,0,0,0,7,0,8,6,7,6,0,0,5,9.45463698400268,6.51431829700963,6,8.02369106846719,0,4,0,3,6,0,0,5,6,0,7,0,6,0,0,0,0 +"942.926513671875",0,0,0,0,0,0,0,0,8,4,5.71863367637399,7,0,0,0,7,0,0,0,0,7,9,0,4,0,0,7,0,0,0,6,0,0,0,0,0,0,0,12,0,6,5,5,5,11,0,5,6.45508446134914,6.5158388241257,5,0,0,7,0,8,6,0,0,6,6,0,0,0,8,0,0,0,0 +"943.219848632812",0,0,0,0,0,0,0,0,6,4,0,9,0,0,0,6,0,0,0,0,0,6,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,6,0,7,0,5,4,9,7,0,7.45631502405191,6.51659908768373,9,0,0,4,0,6,5,0,0,8,9,0,0,0,0,0,0,0,0 +"943.403198242188",0,0,0,0,0,0,0,0,6,5,9.72082329756952,6,0,0,0,9,0,0,0,0,7,4,0,7,0,0,7,0,0,0,5,0,0,0,0,0,0,0,6,0,4,7,6,4,0,9,7,7.4569862400716,6.51748606183477,6,7.0286661928453,0,3,0,6,6,0,0,8,6,0,8,0,0,0,9,0,0 +"943.769958496094",0,0,0,0,0,0,0,0,5,3,8.7227939566455,0,0,0,0,5,0,0,0,0,3,6,0,3,0,0,7,0,0,0,5,0,0,0,0,0,0,0,5,0,3,7,8,4,0,6,0,6.45799306410113,6.51900658895084,12,7.03103529969202,0,4,0,8,5,0,0,6,6,0,0,0,0,0,0,0,0 +"944.466979980469",0,0,0,0,0,0,0,0,7,6,8.72717319903657,5,0,0,0,5,0,0,0,0,9,5,0,4,0,0,6,0,0,0,21,0,0,0,0,0,0,0,5,0,7,6,12,30,38,33,29,45.4601185814968,40.5211606690319,14,56.0364842454395,0,6,0,6,6,0,0,20,27,77,26,0,23,27,22,0,0 +"944.980773925781",0,0,0,0,0,0,0,0,0,4,6.73023866871031,6,0,0,0,7,0,0,0,0,0,25,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,61,0,9,8,8,7,9,6,7,9.46179662154603,0,8,0,0,5,0,5,7,0,0,7,5,0,0,0,6,0,0,0,0 +"945.164306640625",0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,9,0,0,0,0,16,8,0,7,0,0,5,0,0,0,7,0,0,0,0,0,0,0,13,0,7,8,8,7,9,12,7,7.46224409889249,0,7,0,0,5,0,0,11,0,0,8,5,0,0,0,6,0,0,0,0 +"945.4580078125",0,0,0,0,0,0,0,0,9,5,12.7322093277863,10,0,0,0,7,0,0,0,0,6,8,0,5,0,0,6,0,0,0,11,0,0,0,0,0,0,0,11,0,6,5,11,15,31,28,18,27.4631390535854,21.5245818550431,15,33.0431177446103,0,5,0,7,4,0,0,17,17,39,12,0,14,19,14,0,0 +"946.0087890625",0,0,0,0,0,0,0,0,5,4,8.73615064593825,7,0,0,0,8,0,0,0,0,15,16,0,4,0,0,5,0,0,0,7,0,0,0,0,0,0,0,34,0,10,6,4,7,0,7,9,7.46425774695156,6.52622909275215,0,0,0,6,0,4,7,0,0,5,9,0,0,0,0,0,0,0,0 +"946.155700683594",0,0,0,0,0,0,0,0,6,5,7.73834026713379,8,0,0,0,7,0,0,0,0,8,0,0,4,0,0,5,0,0,0,6,0,0,0,0,0,0,0,11,0,8,6,6,8,0,14,0,9.46560017899094,0,9,8.0471452262497,0,4,0,5,7,0,0,5,5,0,0,0,0,0,0,0,0 +"946.449523925781",0,0,0,0,0,0,0,0,8,5,7.73987300197066,8,0,0,0,8,0,0,0,0,7,7,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,10,0,5,7,6,10,11,11,14,13.466159525674,11.5280030410542,10,14.0499881544658,0,5,0,5,5,0,0,9,6,25,11,0,6,11,0,0,0 +"947.000610351562",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,6,0,0,0,0,0,15,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,21,0,4,0,0,4,0,7,0,0,5.52977698935631,7,8.05235726131249,0,5,0,4,0,0,0,5,5,0,8,0,0,0,0,0,0 +"947.147583007812",0,0,0,0,0,0,0,0,7,4,8.74315743376396,9,0,0,0,5,0,0,0,0,12,8,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,9,0,10,10,9,4,0,0,5,0,7.53041054232134,0,0,0,6,0,0,6,0,0,7,0,0,0,0,0,0,0,0,0 +"947.331298828125",0,0,0,0,0,0,0,0,0,6,9.74447120648128,5,0,0,0,5,0,0,0,0,10,0,0,6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,7,7,9,0,0,6,0,0,0,9,0,0,5,0,8,6,0,0,7,0,0,0,0,6,0,0,0,0 +"947.441528320312",0,0,0,0,0,0,0,0,5,3,5.74534705495949,5,0,0,0,5,0,0,0,0,7,6,0,5,0,0,4,0,0,0,6,0,0,0,0,0,0,0,6,0,4,5,7,6,9,6,7,8.46929186709923,7.53142422706538,6,7.05543710021322,0,5,0,5,5,0,0,6,6,0,7,0,6,0,0,0,0 +"947.735595703125",0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,9,0,0,0,0,8,4,0,6,0,0,6,0,0,0,5,0,0,0,0,0,0,0,7,0,5,5,5,5,0,0,5,0,5.53218449062342,7,7.05685856432125,0,4,0,0,9,0,0,5,7,0,0,0,0,0,0,0,0 +"947.956115722656",0,0,0,0,0,0,0,0,6,4,4.74709875191592,4,0,0,0,5,0,0,0,0,6,11,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,10,0,8,6,6,6,0,6,6,0,0,6,7.05922767116797,0,5,0,6,8,0,0,6,6,0,0,0,0,0,0,0,0 +"948.1767578125",0,0,0,0,0,0,0,0,10,5,8.74972629735056,8,0,0,0,3,0,0,0,0,4,3,0,5,0,0,6,0,0,0,5,0,0,0,0,0,0,0,8,0,5,5,4,6,0,0,5,8.47108177648506,8.5342118601115,6,0,0,5,0,5,6,0,0,6,6,0,7,0,0,0,0,0,0 +"948.43408203125",0,0,0,0,0,0,0,0,7,4,7.75104007006788,9,0,0,0,5,0,0,0,0,5,3,0,6,0,0,6,0,0,0,5,0,0,0,0,0,0,0,8,0,5,5,4,6,9,7,6,5.4720886005146,6.53497212366954,4,7.06301824212272,0,5,0,4,5,0,0,5,5,0,0,0,6,10,0,0,0 +"948.985778808594",0,0,0,0,0,0,0,0,7,4,6.75454346398073,0,0,0,0,8,0,0,0,0,7,7,0,6,0,0,5,0,0,0,7,0,0,0,0,0,0,0,10,0,10,5,7,6,10,0,6,7.47376664056382,8.53712620375063,6,7.06538734896944,0,10,0,8,10,0,0,4,7,0,7,0,0,0,0,0,0 +"949.463989257812",0,0,0,0,0,0,0,0,5,6,7.75760893365448,4,0,0,0,5,0,0,0,0,4,3,0,6,0,0,6,0,0,0,7,0,0,0,0,0,0,0,6,0,4,4,5,6,15,24,7,15.475444680613,8.53852002027369,7,15.0689410092395,0,6,0,8,7,0,0,8,23,130,48,0,49,76,66,0,0 +"950.052734375",0,0,0,0,0,0,0,0,7,4,7.76111232756733,9,0,0,0,9,0,0,0,0,4,4,0,4,0,0,5,0,0,0,6,0,0,0,0,0,0,0,8,0,7,12,7,12,9,9,10,9.47757019800873,10.5404206791688,13,10.0724946695096,0,5,0,10,12,0,0,13,9,0,7,0,7,12,0,0,0 +"950.457580566406",0,0,0,0,0,0,0,0,5,5,5.76308298664331,7,0,0,0,4,0,0,0,0,6,6,0,5,0,0,7,0,0,0,5,0,0,0,0,0,0,0,7,0,5,7,6,8,16,18,8,16.4782414140284,9.54181449569184,9,16.0753375977257,0,12,0,5,6,0,0,10,15,77,26,0,28,56,36,0,0 +"951.009826660156",0,0,0,0,0,0,0,0,8,0,8.7659294941975,7,0,0,0,10,0,0,0,0,6,0,0,6,0,0,6,0,0,0,8,0,0,0,0,0,0,0,6,0,4,0,9,0,0,6,0,8.47980758474102,11.5437151545869,11,0,0,7,0,7,10,0,0,0,0,0,12,0,7,0,9,0,0 +"951.157104492188",0,0,0,0,0,0,0,0,7,5,7.76702430479527,8,0,0,0,8,0,0,0,0,10,4,0,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,11,6,7,7,9,8,6,0,6.54434870755195,8,11.0810234541578,0,4,0,6,8,0,0,10,6,0,7,0,6,0,0,0,0 +"951.414916992188",0,0,0,0,0,0,0,0,4,6,9.76833807751259,4,0,0,0,6,0,0,0,0,6,6,0,6,0,0,6,0,0,0,6,0,0,0,0,0,0,0,6,0,8,7,6,6,8,10,6,9.48126188611701,6.545362392296,7,10.0819710968965,0,5,0,4,5,0,0,0,10,28,12,0,12,18,14,0,0 +"951.709533691406",0,0,0,0,0,0,0,0,4,5,5.76965185022991,5,0,0,0,7,0,0,0,0,6,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,9,7,7,7,0,6,7,7.48226871014655,0,7,7.08410329305852,0,8,0,7,5,0,0,7,5,25,9,0,8,0,0,0,0 +"951.967407226562",0,0,0,0,0,0,0,0,6,3,7.772060433545,6,0,0,0,7,0,0,0,0,6,4,0,4,0,0,6,0,0,0,7,0,0,0,0,0,0,0,5,0,5,8,7,6,8,9,5,9.48293992616624,6.54700963000507,8,8.08576166785122,0,10,0,6,9,0,0,8,5,0,7,0,6,0,0,0,0 +"952.446350097656",0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,5,0,0,0,0,4,6,0,5,0,0,4,0,0,0,5,0,0,0,0,0,0,0,5,0,7,11,6,7,0,6,0,7.48428235820562,8.54865686771414,5,9.08789386401327,0,4,0,0,7,0,0,6,6,0,0,0,9,0,11,0,0 +"952.59375",0,0,0,0,0,0,0,0,7,5,5.77512590321874,4,0,0,0,5,0,0,0,0,4,4,0,4,0,0,7,0,0,0,6,0,0,0,0,0,0,0,5,0,6,6,3,7,8,8,7,6.48484170488869,6.54916371008616,6,7.0893153281213,0,4,0,7,9,0,0,7,9,15,10,0,9,11,0,0,0 +"953.072875976562",0,0,0,0,0,0,0,0,7,6,12.7788482592512,6,0,0,0,7,0,0,0,0,6,4,0,8,0,0,4,0,0,0,7,0,0,0,0,0,0,0,6,0,6,4,8,6,9,8,5,0,9.55068423720223,7,9.090973702914,0,5,0,5,5,0,0,5,8,0,7,0,0,12,0,0,0 +"953.478393554688",0,0,0,0,0,0,0,0,7,6,8.78103788044668,6,0,0,0,0,0,0,0,0,4,4,0,8,0,0,5,0,0,0,8,0,0,0,0,0,0,0,6,0,4,8,7,8,0,6,6,7.48775030764068,0,8,8.09381663113006,0,6,0,6,8,0,0,4,10,0,7,0,0,0,0,0,0 +"953.699645996094",0,0,0,0,0,0,0,0,5,7,7.78257061528356,5,0,0,0,8,0,0,0,0,4,4,0,3,0,0,6,0,0,0,6,0,0,0,0,0,0,0,7,0,5,4,7,7,9,6,7,0,6.55258489609731,6,0,0,5,0,5,7,0,0,4,0,0,0,0,7,0,0,0,0 +"953.9208984375",0,0,0,0,0,0,0,0,7,3,5.78344646376177,6,0,0,0,8,0,0,0,0,10,7,0,6,0,0,7,0,0,0,4,0,0,0,0,0,0,0,6,0,5,7,7,4,0,0,7,6.48864526233359,8.55423213380639,6,0,0,5,0,6,7,0,0,4,7,0,0,0,7,0,0,0,0 +"954.363464355469",0,0,0,0,0,0,0,0,0,4,0,9,0,0,0,7,0,0,0,0,11,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,5,0,6,0,8,0,0,0,10.5552458185504,0,0,0,4,0,6,6,0,0,0,6,0,0,0,0,0,0,0,0 +"954.47412109375",0,0,0,0,0,0,0,0,6,3,9.78694985767462,6,0,0,0,6,0,0,0,0,7,6,0,4,0,0,3,0,0,0,7,0,0,0,0,0,0,0,7,0,0,6,0,8,0,7,6,7.49043517171943,6.55587937151546,7,0,0,4,0,6,6,0,0,5,6,0,8,0,6,0,0,0,0 +"954.732360839844",0,0,0,0,0,0,0,0,6,3,4.7889205167506,6,0,0,0,4,0,0,0,0,6,5,0,4,0,0,6,0,0,0,5,0,0,0,0,0,0,0,6,0,5,5,6,4,0,8,5,6.49155386508558,4.55663963507349,5,8.10234541577825,0,6,0,6,4,0,0,5,8,0,0,0,0,0,0,0,0 +"955.248901367188",0,0,0,0,0,0,0,0,8,5,0,5,0,0,0,7,0,0,0,0,6,7,0,6,0,0,5,0,0,0,7,0,0,0,0,0,0,0,9,0,6,5,6,4,8,7,7,0,6.55841358337557,6,10.106135986733,0,5,0,6,7,0,0,5,0,0,7,0,8,0,0,0,0 +"955.544189453125",0,0,0,0,0,0,0,0,8,6,7.79351872126122,7,0,0,0,5,0,0,0,0,4,5,0,3,0,0,6,0,0,0,3,0,0,0,0,0,0,0,6,0,7,4,8,7,0,7,5,7.49390312115449,0,6,7.10755745084103,0,4,0,5,0,0,0,7,7,0,0,0,10,0,0,0,0 +"955.765625",0,0,0,0,0,0,0,0,5,3,4.79483249397854,0,0,0,0,5,0,0,0,0,5,6,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,6,0,4,4,5,5,0,6,0,9.49457433717418,7.55993411049164,5,0,0,5,0,4,6,0,0,5,8,0,0,0,6,0,0,0,0 +"956.060974121094",0,0,0,0,0,0,0,0,6,0,0,9,0,0,0,6,0,0,0,0,0,8,0,4,0,0,4,0,0,0,5,0,0,0,0,0,0,0,6,0,3,6,7,6,0,9,6,5.49513368385725,5.56094779523568,6,8.11111111111111,0,4,0,5,8,0,0,4,7,0,0,0,7,0,0,0,0 +"956.282470703125",0,0,0,0,0,0,0,0,0,7,6.79724107729363,9,0,0,0,6,0,0,0,0,6,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,5,6,4,0,0,7,0,0,7.56183476938672,4,0,0,3,0,0,7,0,0,6,5,0,0,0,0,0,0,0,0 +"956.467102050781",0,0,0,0,0,0,0,0,10,3,12.7983358878914,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,5,6,4,7,10,7,0,7.4962523772234,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0 +"956.577880859375",0,0,0,0,0,0,0,0,5,3,6.79921173636961,0,0,0,0,5,0,0,0,0,0,6,0,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,7,0,4,4,6,7,0,0,7,0,5.56246832235175,6,0,0,4,0,6,7,0,0,6,6,0,0,0,8,11,0,0,0 +"956.947204589844",0,0,0,0,0,0,0,0,5,4,5.80162031968469,7,0,0,0,9,0,0,0,0,6,6,0,5,0,0,4,0,0,0,5,0,0,0,0,0,0,0,7,0,6,8,6,6,0,7,6,5.49826602528247,5.56424227065383,5,7.11727078891258,0,5,0,4,8,0,0,5,5,0,0,0,6,0,0,0,0 +"957.205749511719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,8,5,0,0,9,0,0,5,0,7,0,0,0,7,0,0,0,0,7,0,0,0,0 +"957.316589355469",0,0,0,0,0,0,0,0,5,4,14.8033720166411,9,0,0,0,6,0,0,0,0,7,4,0,6,0,0,8,0,0,0,7,0,0,0,0,0,0,0,9,0,7,5,8,6,9,0,0,6.49893724130216,8.56538266599088,10,0,0,5,0,7,9,0,0,5,6,0,0,0,0,0,9,0,0 +"957.538269042969",0,0,0,0,0,0,0,0,9,7,4.8053426757171,0,0,0,0,7,0,0,0,0,4,6,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,5,5,6,5,9,8,0,0,7.5658895083629,0,8.121298270552,0,3,0,5,6,0,0,5,6,0,8,0,0,0,0,0,0 +"957.723022460938",0,0,0,0,0,0,0,0,4,0,0,9,0,0,0,7,0,0,0,0,5,4,0,5,0,0,8,0,0,0,5,0,0,0,0,0,0,0,5,0,5,5,5,8,0,8,5,0,6.56677648251394,5,7.12200900260602,0,3,0,3,6,0,0,5,8,18,8,0,7,11,9,0,0 +"957.981689453125",0,0,0,0,0,0,0,0,5,5,7.80665644843442,6,0,0,0,7,0,0,0,0,3,3,0,4,0,0,4,0,0,0,5,0,0,0,0,0,0,0,4,0,5,6,4,6,8,0,5,9.50095088936123,5.56766345666498,8,7.12319355602938,0,4,0,4,4,0,0,4,6,0,0,0,6,0,0,0,0 +"958.27734375",0,0,0,0,0,0,0,0,5,5,6.80928399386906,10,0,0,0,3,0,0,0,0,8,5,0,5,0,0,6,0,0,0,7,0,0,0,0,0,0,0,5,0,5,8,0,5,0,0,0,8.50195771339076,0,6,0,0,5,0,6,7,0,0,5,9,0,0,0,0,0,0,0,0 +"958.462158203125",0,0,0,0,0,0,0,0,9,4,8.81037880446683,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,7,5,8,0,6,0,5.56893056259503,0,0,0,3,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 +"958.573059082031",0,0,0,0,0,0,0,0,5,4,7.81103569082549,7,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,6,0,0,0,0,0,0,0,7,0,5,4,7,4,0,6,5,7.50307640675691,4.57019766852509,7,8.12793176972281,0,3,0,6,4,0,0,4,6,0,0,0,0,11,0,0,0 +"959.275573730469",0,0,0,0,0,0,0,0,8,4,9.81585285745566,6,0,0,0,5,0,0,0,0,6,6,0,8,0,0,10,0,0,0,9,0,0,0,0,0,0,0,8,0,9,8,4,5,8,11,5,5.50509005481597,6.57146477445514,5,0,0,5,0,4,6,0,0,7,7,0,0,0,0,12,0,0,0 +"959.534423828125",0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,6,0,0,0,0,0,6,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,5,0,0,0,0,0,0,6,0,0,7,0,4,6,0,0,0,0,0,0,0,6,0,0,0,0 +"959.645385742188",0,0,0,0,0,0,0,0,4,4,12.8176045544121,7,0,0,0,6,0,0,0,0,6,5,0,5,0,0,3,0,0,0,5,0,0,0,0,0,0,0,10,0,6,5,4,4,0,6,5,6.50620874818212,7.57298530157121,6,0,0,3,0,6,6,0,0,4,6,0,7,0,0,0,0,0,0 +"959.941345214844",0,0,0,0,0,0,0,0,5,4,8.81935625136851,6,0,0,0,6,0,0,0,0,4,8,0,3,0,0,6,0,0,0,5,0,0,0,0,0,0,0,7,0,6,8,4,4,0,6,6,6.50710370287504,6.57374556512924,6,0,0,4,0,6,6,0,0,7,7,0,0,0,0,0,0,0,0 +"960.200317382812",0,0,0,0,0,0,0,0,4,4,0,7,0,0,0,7,0,0,0,0,0,6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,0,4,0,0,0,0,6.57513938165231,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"960.311279296875",0,0,0,0,0,0,0,0,7,4,8.82110794832494,7,0,0,0,7,0,0,0,0,6,5,0,5,0,0,6,0,0,0,4,0,0,0,0,0,0,0,6,0,4,4,8,7,9,0,7,9.50799865756796,5.57564622402433,7,9.13835583984838,0,5,0,6,8,0,0,4,6,0,7,0,0,0,0,0,0 +"960.533325195312",0,0,0,0,0,0,0,0,7,5,9.82242172104226,6,0,0,0,6,0,0,0,0,7,7,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,8,5,6,9,9,7,5.50934108960734,6.57653319817537,6,9.14025112532575,0,6,0,5,8,0,0,5,9,0,8,0,0,0,0,0,0 +"961.162475585938",0,0,0,0,0,0,0,0,7,4,0,7,0,0,0,5,0,0,0,0,8,8,0,0,0,0,6,0,0,0,7,0,0,0,0,0,0,0,5,0,8,6,0,7,8,6,0,0,0,8,7.14285714285714,0,7,0,4,8,0,0,5,8,0,0,0,0,0,11,0,0 +"961.384582519531",0,0,0,0,0,0,0,0,9,6,9.82701992555288,4,0,0,0,3,0,0,0,0,6,4,0,6,0,0,5,0,0,0,5,0,0,0,0,0,0,0,7,0,8,6,6,6,8,6,6,7.51101912965656,9.57894069944247,7,10.1452262497039,0,4,0,6,6,0,0,5,0,0,0,0,0,0,0,0,0 +"962.125183105469",0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,8,0,0,0,0,0,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,7,0,5,5,0,0,0,7,0,8.51348025506209,0,8,0,0,5,0,0,7,0,0,0,0,0,0,0,7,0,0,0,0 +"962.236267089844",0,0,0,0,0,0,0,0,8,4,12.8331508649004,7,0,0,0,8,0,0,0,0,6,8,0,6,0,0,5,0,0,0,6,0,0,0,0,0,0,0,5,0,6,7,8,7,0,7,9,7.51415147108178,7.5818550430816,5,10.1499644633973,0,5,0,5,8,0,0,6,5,0,0,0,10,12,0,0,0 +"962.569641113281",0,0,0,0,0,0,0,0,7,4,7.83468359973725,4,0,0,0,6,0,0,0,0,7,5,0,6,0,0,4,0,0,0,4,0,0,0,0,0,0,0,8,0,6,6,5,9,0,10,5,6.51515829511131,5.58337557019767,5,10.1542288557214,0,6,0,4,4,0,0,5,7,15,0,0,7,0,11,0,0 +"963.162414550781",0,0,0,0,0,0,0,0,7,5,6.83840595576965,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,9,0,5,6,6,5,0,0,7,7.51694820449715,6.58527622909275,8,0,0,5,0,5,7,0,0,5,7,0,8,0,0,11,9,0,0 +"963.347717285156",0,0,0,0,0,0,0,0,6,0,4.83950076636742,7,0,0,0,7,0,0,0,0,0,3,0,6,0,0,6,0,0,0,4,0,0,0,0,0,0,0,4,0,0,6,5,5,0,0,6,0,0,10,0,0,4,0,5,4,0,0,9,8,0,0,0,17,0,0,0,0 +"963.495971679688",0,0,0,0,0,0,0,0,6,4,5.84081453908474,6,0,0,0,6,0,0,0,0,6,4,0,4,0,0,5,0,0,0,5,0,0,0,0,0,0,0,3,0,5,10,7,5,8,12,6,8.51761942051684,10.5866700456158,9,8.15967780146885,0,6,0,5,4,0,0,9,8,16,14,0,0,10,9,0,0 +"964.052001953125",0,0,0,0,0,0,0,0,4,0,5.84300416028027,4,0,0,0,5,0,0,0,0,7,5,0,0,0,0,4,0,0,0,7,0,0,0,0,0,0,0,7,0,9,5,6,0,0,11,0,10.5194093299027,8.58844399391789,7,0,0,3,0,4,0,0,0,4,6,0,10,0,0,0,10,0,0 +"964.237365722656",0,0,0,0,0,0,0,0,7,5,6.8447558572367,4,0,0,0,5,0,0,0,0,6,5,0,7,0,0,8,0,0,0,5,0,0,0,0,0,0,0,5,0,7,6,6,6,11,9,6,9.52008054592236,5.58882412569691,7,9.16252072968491,0,5,0,9,8,0,0,5,7,19,12,0,15,14,9,0,0 +"964.496887207031",0,0,0,0,0,0,0,0,7,5,4.84628859207357,0,0,0,0,6,0,0,0,0,6,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,5,5,8,7,0,0,6,0,0,0,0,0,3,0,5,6,0,0,0,8,0,10,0,15,0,9,0,0 +"964.608154296875",0,0,0,0,0,0,0,0,7,4,3.84694547843223,6,0,0,0,5,0,0,0,0,4,5,0,6,0,0,7,0,0,0,5,0,0,0,0,0,0,0,4,0,5,4,5,10,0,7,7,10.5214229779617,6.58996452103396,5,0,0,4,0,5,4,0,0,9,7,0,11,0,15,17,0,0,0 +"965.164489746094",0,0,0,0,0,0,0,0,7,8,0,5,0,0,0,7,0,0,0,0,6,4,0,5,0,0,5,0,0,0,7,0,0,0,0,0,0,0,8,0,5,7,8,11,13,12,10,13.5232128873476,15.5924987328941,9,13.1696280502251,0,6,0,6,6,0,0,6,10,24,8,0,9,22,17,0,0 +"965.461242675781",0,0,0,0,0,0,0,0,7,5,6.8517626450624,4,0,0,0,4,0,0,0,0,7,5,0,5,0,0,6,0,0,0,6,0,0,0,0,0,0,0,6,0,4,7,7,5,0,8,8,7.52421971137711,8.59338570704511,4,10.1710495143331,0,6,0,6,5,0,0,4,5,0,9,0,7,10,0,0,0 +"966.463195800781",0,0,0,0,0,0,0,0,6,4,7.85701773593168,9,0,0,0,7,0,0,0,0,6,6,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,5,0,6,11,14,11,10,21.526568967446,0,11,0,0,5,0,5,3,0,0,8,10,20,16,0,10,0,14,0,0 +"966.685913085938",0,0,0,0,0,0,0,0,5,4,6.85876943288811,5,0,0,0,5,0,0,0,0,6,6,0,5,0,0,6,0,0,0,6,0,0,0,0,0,0,0,6,0,5,10,7,6,10,7,6,9.52724018346571,10.5968068930563,7,13.1781568348733,0,4,0,5,4,0,0,8,5,19,9,0,6,14,0,0,0 +"967.242858886719",0,0,0,0,0,0,0,0,0,4,8.86205386468141,0,0,0,0,7,0,0,0,0,0,6,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,8,6,8,8,10,8.52880635417832,12.5988342625443,8,0,0,5,0,8,6,0,0,5,0,0,0,0,0,10,0,0,0 +"967.428527832031",0,0,0,0,0,0,0,0,8,0,0,11,0,0,0,0,0,0,0,0,6,0,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,10,6,0,8,0,0,10,0,0,9,0,0,5,0,8,8,0,0,9,16,0,7,0,8,0,11,0,0 +"967.539916992188",0,0,0,0,0,0,0,0,6,4,8.86358659951828,9,0,0,0,5,0,0,0,0,0,5,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,6,9,8,8,9.52981317820785,9.5999746578814,9,12.18407960199,0,5,0,5,4,0,0,6,0,0,0,0,0,12,0,0,0 +"967.762817382812",0,0,0,0,0,0,0,0,8,4,7.86533829647471,5,0,0,0,7,0,0,0,0,5,5,0,5,0,0,5,0,0,0,6,0,0,0,0,0,0,0,7,0,5,5,4,6,8,8,0,8.53115561024723,6.60111505321845,10,8.1862117981521,0,5,0,5,5,0,0,5,5,0,0,0,7,0,0,0,0 +"968.282897949219",0,0,0,0,0,0,0,0,9,4,6.86884169038756,0,0,0,0,6,0,0,0,0,0,7,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,7,0,7,8,5,7,9,7,0,7.53205056494015,6.60276229092752,7,11.1897654584222,0,6,0,7,6,0,0,6,6,0,0,0,7,0,0,0,0 +"968.54296875",0,0,0,0,0,0,0,0,0,3,4.86971753886578,7,0,0,0,4,0,0,0,0,6,0,0,3,0,0,5,0,0,0,4,0,0,0,0,0,0,0,5,0,3,0,0,6,0,8,9,0,0,5,0,0,4,0,0,7,0,0,8,0,0,0,0,0,0,0,0,0 +"968.691589355469",0,0,0,0,0,0,0,0,5,3,0,11,0,0,0,4,0,0,0,0,4,5,0,3,0,0,5,0,0,0,4,0,0,0,0,0,0,0,5,0,3,7,8,5,9,8,6,9.53339299697953,7.60390268626457,5,11.1914238332149,0,6,0,3,4,0,0,6,6,0,0,0,7,10,0,0,0 +"969.026062011719",0,0,0,0,0,0,0,0,6,5,7.87212612218086,7,0,0,0,8,0,0,0,0,7,5,0,5,0,0,4,0,0,0,5,0,0,0,0,0,0,0,5,0,4,6,8,9,10,9,9,9.53428795167245,5.60491637100862,8,8.19308220800758,0,0,0,7,6,0,0,4,5,0,0,0,0,0,0,0,0 +"969.286254882812",0,0,0,0,0,0,0,0,10,4,11.8747536676155,4,0,0,0,7,0,0,0,0,8,5,0,8,0,0,5,0,0,0,4,0,0,0,0,0,0,0,6,0,7,5,6,12,10,11,8,6.53507103702875,8.60643689812468,4,0,0,6,0,6,5,0,0,5,6,0,0,0,7,0,0,0,0 +"970.067077636719",0,0,0,0,0,0,0,0,9,5,6.87825706152836,6,0,0,0,8,0,0,0,0,4,4,0,4,0,0,6,0,0,0,4,0,0,0,0,0,0,0,5,0,5,7,5,6,0,7,6,0,0,7,8.19971570717839,0,4,0,4,6,0,0,4,0,0,0,0,0,0,0,0,0 +"970.2158203125",0,0,0,0,0,0,0,0,6,5,8.88022772060433,7,0,0,0,6,0,0,0,0,6,5,0,6,0,0,3,0,0,0,8,0,0,0,0,0,0,0,5,0,9,6,8,6,0,7,5,6.53753216243428,6.60922453117081,5,0,0,6,0,8,7,0,0,8,5,0,8,0,7,0,0,0,0 +"970.587768554688",0,0,0,0,0,0,0,0,5,4,7.88241734179987,5,0,0,0,4,0,0,0,0,5,5,0,5,0,0,4,0,0,0,5,0,0,0,0,0,0,0,6,0,8,5,6,10,0,8,6,6.53887459447366,8.61099847947288,4,7.20445392087183,0,3,0,7,6,0,0,5,7,0,0,0,0,0,0,0,0 +"971.0341796875",0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,7,0,0,0,0,9,4,0,3,0,0,7,0,0,0,9,0,0,0,0,0,0,0,6,0,5,8,7,9,9,10,6,7.54021702651303,13.6122655854029,7,8.20705993840322,0,4,0,10,9,0,0,12,15,0,7,0,6,0,0,0,0 +"971.443542480469",0,0,0,0,0,0,0,0,5,5,5.88767243266915,11,0,0,0,8,0,0,0,0,5,9,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,5,0,6,4,8,6,0,7,6,12.5417831972256,6.613532691333,8,9.20942904524994,0,3,0,6,6,0,0,6,7,41,17,0,19,40,30,0,0 +"971.964599609375",0,0,0,0,0,0,0,0,7,4,5.89029997810379,7,0,0,0,5,0,0,0,0,3,7,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,5,0,5,6,6,6,10,6,8,7.54312562926502,0,8,0,0,10,0,5,8,0,0,7,13,0,7,0,6,0,0,0,0 +"972.448547363281",0,0,0,0,0,0,0,0,5,4,4.89248959929932,6,0,0,0,6,0,0,0,0,8,5,0,6,0,0,4,0,0,0,6,0,0,0,0,0,0,0,6,0,6,4,5,7,0,9,8,9.54480366931424,7.61746071971617,6,9.2165363657901,0,6,0,9,4,0,0,5,11,22,13,0,16,29,20,0,0 +"972.969909667969",0,0,0,0,0,0,0,0,6,4,4.89555506897307,11,0,0,0,7,0,0,0,0,6,5,0,7,0,0,4,0,0,0,5,0,0,0,0,0,0,0,6,0,3,9,6,7,9,6,8,10.5462579706902,6.61898124683224,8,0,0,5,0,5,6,0,0,7,12,0,7,0,0,0,0,0,0 +"973.528625488281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,5,0,5,6,4,10,0,11,0,0,10.6206284845413,6,8.22222222222222,0,0,0,5,0,0,0,0,8,16,0,0,9,0,0,0,0 +"973.640380859375",0,0,0,0,0,0,0,0,5,3,8.89993431136413,6,0,0,0,10,0,0,0,0,6,5,0,5,0,0,4,0,0,0,4,0,0,0,0,0,0,0,6,0,4,5,4,7,8,8,8,6.54782414140284,8.62113532691333,5,11.2236436863303,0,6,0,5,11,0,0,10,6,0,9,0,6,12,11,0,0 +"973.975708007812",0,0,0,0,0,0,0,0,0,5,8.90234289467922,7,0,0,0,6,0,0,0,0,4,7,0,0,0,0,6,0,0,0,7,0,0,0,0,0,0,0,7,0,7,5,6,7,8,7,0,9.54939031211545,7.62252914343639,7,8.22530206112296,0,5,0,8,5,0,0,4,8,0,0,0,6,0,0,0,0 +"974.385681152344",0,0,0,0,0,0,0,0,6,5,6.90409459163565,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,6,6,11,6,0,0,0,0,9.22814498933902,0,6,0,0,7,0,0,5,10,0,0,0,0,0,0,0,0 +"974.497497558594",0,0,0,0,0,0,0,0,0,4,9.90540836435297,10,0,0,0,4,0,0,0,0,9,4,0,4,0,0,7,0,0,0,3,0,0,0,0,0,0,0,4,0,9,6,0,5,0,0,5,0,0,5,0,0,6,0,6,0,0,0,5,0,0,0,0,9,0,0,0,0 +"974.646606445312",0,0,0,0,0,0,0,0,6,4,5.90628421283118,0,0,0,0,5,0,0,0,0,7,3,0,4,0,0,6,0,0,0,3,0,0,0,0,0,0,0,6,0,5,4,7,5,10,6,7,10.5514039601745,7.62430309173847,9,8.22956645344705,0,5,0,4,6,0,0,6,5,0,0,0,0,0,9,0,0 +"974.907531738281",0,0,0,0,0,0,0,0,9,5,7.90737902342895,5,0,0,0,5,0,0,0,0,6,3,0,4,0,0,6,0,0,0,7,0,0,0,0,0,0,0,3,0,4,6,6,5,0,0,5,7.55218704553082,8.62531677648251,7,9.23193556029377,0,4,0,7,8,0,0,4,7,0,8,0,8,0,0,0,0 +"975.504089355469",0,0,0,0,0,0,0,0,7,4,5.91153930370046,5,0,0,0,7,0,0,0,0,5,4,0,6,0,0,8,0,0,0,4,0,0,0,0,0,0,0,4,0,7,5,5,10,34,28,17,19.5539769549167,15.6274708565636,16,41.2357261312485,0,4,0,7,4,0,0,12,23,91,24,0,15,44,28,0,0 +"975.95166015625",0,0,0,0,0,0,0,0,0,6,5.91285307641778,5,0,0,0,7,0,0,0,0,5,9,0,5,0,0,4,0,0,0,6,0,0,0,0,0,0,0,5,0,5,7,4,8,8,7,6,9.55531938695604,7.62911809427268,8,0,0,4,0,5,7,0,0,7,6,0,9,0,8,0,9,0,0 +"976.51123046875",0,0,0,0,0,0,0,0,6,5,6.91701335668929,7,0,0,0,6,0,0,0,0,5,5,0,5,0,0,4,0,0,0,6,0,0,0,0,0,0,0,5,0,7,4,8,9,14,15,0,19.5569974270053,9.63063862138875,10,0,0,4,0,4,5,0,0,11,15,58,17,0,16,28,15,0,0 +"976.7724609375",0,0,0,0,0,0,0,0,6,0,0,6,0,0,0,6,0,0,0,0,0,4,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,6,0,4,6,0,5,0,6,9,6.55778051236156,8.63139888494678,6,18.2423596304193,0,4,0,5,4,0,0,8,7,0,8,0,11,0,0,0,0 +"976.959045410156",0,0,0,0,0,0,0,0,5,5,5.91854609152617,7,0,0,0,8,0,0,0,0,8,4,0,6,0,0,7,0,0,0,7,0,0,0,0,0,0,0,6,0,6,6,7,5,8,7,6,5.55856359771787,9.63304612265585,5,7.24591329068941,0,4,0,3,7,0,0,5,7,0,7,0,0,14,0,0,0 +"977.518920898438",0,0,0,0,0,0,0,0,10,5,8.92226844755857,6,0,0,0,8,0,0,0,0,5,4,0,4,0,0,7,0,0,0,5,0,0,0,0,0,0,0,7,0,3,4,6,10,16,13,9,11.5601297684305,7.63443993917892,8,18.2487562189055,0,5,0,5,12,0,0,9,11,29,17,0,11,19,10,0,0 +"978.041625976562",0,0,0,0,0,0,0,0,6,3,0,7,0,0,0,6,0,0,0,0,6,5,0,4,0,0,11,0,0,0,5,0,0,0,0,0,0,0,6,0,4,5,3,4,8,0,7,7.5618078084797,5.63608717688799,4,7.25088841506752,0,3,0,6,8,0,0,6,7,0,0,0,0,0,0,0,0 +"978.265686035156",0,0,0,0,0,0,0,0,7,5,9.92708561418875,9,0,0,0,6,0,0,0,0,7,4,0,4,0,0,7,0,0,0,4,0,0,0,0,0,0,0,5,0,5,5,6,4,0,11,5,6.56247902449938,5.63684744044602,6,0,0,6,0,5,8,0,0,9,8,0,0,0,0,0,0,0,0 +"978.564453125",0,0,0,0,0,0,0,0,5,4,4.92905627326473,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,4,0,0,0,9,0,0,0,0,0,0,0,7,0,4,5,4,10,8,9,6,9.56326210985569,6.63824125696908,8,9.25515280739161,0,4,0,5,5,0,0,4,6,18,9,0,8,10,0,0,0 +"979.236877441406",0,0,0,0,0,0,0,0,8,5,8.93343551565579,9,0,0,0,6,0,0,0,0,8,8,0,7,0,0,6,0,0,0,4,0,0,0,0,0,0,0,6,0,6,7,7,5,12,9,6,6.56505201924153,0,7,7.25823264629235,0,5,0,4,5,0,0,6,5,0,0,0,7,0,0,0,0 +"979.535827636719",0,0,0,0,0,0,0,0,7,3,0,6,0,0,0,9,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,0,0,8.56572323526122,10.6411556006082,5,8.26083866382374,0,7,0,0,5,0,0,4,0,0,8,0,7,0,0,0,0 +"979.685302734375",0,0,0,0,0,0,0,0,6,3,3.93496825049266,4,0,0,0,0,0,0,0,0,6,4,0,5,0,0,7,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,0,6,8,8,6,0,6.64153573238723,7,7.2620232172471,0,3,0,3,0,0,0,4,6,0,0,0,0,13,10,0,0 +"979.872131347656",0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,4,0,0,0,0,5,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,7,5,0,0,0,0,8.56706566730059,0,0,0,0,6,0,4,4,0,0,0,6,0,0,0,7,0,0,0,0 +"979.984313964844",0,0,0,0,0,0,0,0,6,3,6.9375957959273,4,0,0,0,5,0,0,0,0,5,5,0,4,0,0,5,0,0,0,4,0,0,0,0,0,0,0,6,0,0,6,5,8,0,8,9,5.56751314464705,6.64267612772428,7,7.26391850272447,0,6,0,6,9,0,0,4,5,0,0,0,0,10,0,0,0 +"980.507629394531",0,0,0,0,0,0,0,0,4,6,9.94022334136194,4,0,0,0,8,0,0,0,0,4,5,0,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,4,4,7,5,0,9,9,12.568967446023,8.64457678661936,4,0,0,6,0,5,5,0,0,7,6,0,0,0,10,0,0,0,0 +"980.731994628906",0,0,0,0,0,0,0,0,5,5,5.94263192467703,6,0,0,0,4,0,0,0,0,5,5,0,6,0,0,5,0,0,0,4,0,0,0,0,0,0,0,5,0,4,5,5,4,8,6,0,7.56952679270612,7.6453370501774,8,10.2681828950486,0,0,0,4,7,0,0,4,5,0,0,0,8,10,0,0,0 +"981.442565917969",0,0,0,0,0,0,0,0,8,4,0,5,0,0,0,0,0,0,0,0,4,9,0,6,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,4,9,7,0,0,8,5,6.57198791811165,0,10,0,0,4,0,4,0,0,0,5,0,0,0,0,10,0,0,0,0 +"981.629577636719",0,0,0,0,0,0,0,0,3,3,11.9467922049485,6,0,0,0,4,0,0,0,0,4,5,0,5,0,0,5,0,0,0,3,0,0,0,0,0,0,0,5,0,4,9,4,5,0,7,6,5.57232352612149,7.6476178408515,4,8.27434257285003,0,3,0,4,6,0,0,5,7,0,0,0,9,0,0,0,0 +"981.96630859375",0,0,0,0,0,0,0,0,6,4,6.94963871250274,7,0,0,0,7,0,0,0,0,7,5,0,7,0,0,5,0,0,0,5,0,0,0,0,0,0,0,7,0,6,6,4,6,0,0,0,5.57288287280456,7.64951849974658,4,0,0,7,0,5,5,0,0,5,5,0,0,0,6,0,0,0,0 +"982.303100585938",0,0,0,0,0,0,0,0,5,6,8.9507335231005,4,0,0,0,0,0,0,0,0,7,0,0,7,0,0,5,0,0,0,4,0,0,0,0,0,0,0,4,0,8,0,5,6,0,7,8,0,8.65027876330461,8,0,0,4,0,0,5,0,0,5,6,0,9,0,6,0,0,0,0 +"982.527587890625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"982.789611816406",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"983.051635742188",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"983.313720703125",0,0,0,0,0,0,0,0,0,5,9.956864462448,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"983.800537109375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"984.025207519531",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"984.249938964844",0,0,0,0,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"984.587097167969",0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"984.999267578125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"985.299072265625",0,0,0,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"986.048828125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"986.386291503906",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"986.573791503906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"986.723815917969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"987.023864746094",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"987.248962402344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"987.549133300781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"987.661682128906",0,0,0,0,0,0,0,0,0,0,8.98138821983797,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"988.412292480469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.6711860111505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"989.050537109375",0,0,0,0,0,0,0,0,0,6,8.99124151521787,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"989.538757324219",0,0,0,0,0,0,0,0,0,6,8.99233632581563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"989.7265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"990.027099609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"990.515563964844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,21,76,42,40,30.5989484282358,29.6782818043588,25,54.3302534944326,0,0,0,0,0,0,0,35,41,80,22,0,20,0,0,0,0 +"990.966552734375",0,0,0,0,0,0,0,0,8,7,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"991.530395507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,19,45,26,30,21.6018570309878,21.681829700963,0,25.3371239042881,0,0,0,0,0,0,0,20,24,0,0,0,0,0,0,0,0 +"992.169677734375",0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"992.583435058594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0 +"992.921997070312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"993.4111328125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,38,35,0,0 +"993.938110351562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"994.051025390625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"994.389831542969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"994.540466308594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"994.841735839844",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"995.369018554688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"995.482055664062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"995.67041015625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"996.047180175781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"996.235595703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"996.386352539062",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"996.9140625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"997.140319824219",0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"997.479675292969",0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,27.6194205168363,17.7021033958439,0,48.3743188817816,0,0,0,0,0,0,0,0,16,76,27,0,34,36,33,0,0 +"997.969970703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"998.498107910156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.3811892916371,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0 +"998.799926757812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"998.988647460938",0,0,0,0,0,0,0,0,0,5,11,0,0,0,0,0,0,0,0,0,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"999.441528320312",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"999.592529296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0 +"999.89453125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1000.0078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1000.42321777344",0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1000.61199951172",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1000.98974609375",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1001.55645751953",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,119,33,67.631726143864,22.7155347187025,35,86.4001421464108,0,0,0,0,0,0,0,21,61,753,216,0,179,357,240,0,0 +"1002.57696533203",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,51,66,24,61.634634746616,28.7188291941206,30,62.4060649135276,0,0,0,0,0,0,0,0,44,437,118,0,108,227,151,0,0 +"1003.56018066406",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,22.6376552187046,0,17,26.4122245913291,0,0,0,0,0,0,0,0,22,144,63,0,44,84,47,0,0 +"1003.9384765625",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1004.54388427734",0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1004.73309326172",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0 +"1004.96020507812",0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1005.18731689453",0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1005.56585693359",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0 +"1005.94451904297",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1006.55053710938",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0 +"1006.89147949219",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1007.04302978516",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1007.49780273438",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1007.68731689453",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1007.83892822266",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1008.02844238281",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1008.29382324219",0,0,0,0,0,0,0,0,8,6,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1008.52130126953",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1008.97637939453",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1009.20397949219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1009.35571289062",0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1009.6591796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1010.03863525391",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1010.34222412109",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1010.53198242188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1011.02545166016",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1011.48107910156",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1011.70892333984",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1012.01281738281",0,0,0,0,0,0,0,0,0,5,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1012.54461669922",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,15,21,20,20,19.6640563821457,24.7520273694881,0,32.4683724235963,0,0,0,0,0,0,0,0,19,0,0,0,20,0,0,0,0 +"1012.88659667969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1013.53271484375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,21,18,0,18.6669649848976,15.7554485554992,0,19.4750059227671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1014.21704101562",0,0,0,0,0,0,0,0,10,8,12,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1014.52124023438",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1014.63537597656",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1015.47222900391",0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,30,0,0 +"1015.58642578125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.6730059290748,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,34,34,30,0,0 +"1016.04302978516",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1016.38562011719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1016.53790283203",0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.6753551851438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,23,0,0 +"1016.84246826172",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1017.03283691406",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1017.56597900391",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1017.83264160156",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1018.13739013672",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1018.48028564453",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1018.67083740234",0,0,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1018.97570800781",0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1019.47125244141",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.6844166014096,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0 +"1019.77630615234",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1019.96691894531",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1020.5771484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1020.99676513672",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1021.49279785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1021.68359375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1022.10345458984",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1022.37072753906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1022.59979248047",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1023.55456542969",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,51,24,44.696498489764,24.7891535732387,25,53.5373134328358,0,0,0,0,0,0,0,0,39,364,90,0,120,215,152,0,0 +"1024.54797363281",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,29,21,38.6992952231793,17.7923213380639,0,32.5432361999526,0,0,0,0,0,0,0,0,24,193,61,0,68,117,89,0,0 +"1025.044921875",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1025.15954589844",0,0,0,0,0,0,0,0,8,7,9,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1025.580078125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,18.7024275646045,0,0,18.5496327884388,0,0,0,0,0,0,0,0,0,72,26,0,21,51,40,0,0 +"1026.07727050781",0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1026.53625488281",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1026.84240722656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1027.07189941406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1027.37805175781",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1027.56945800781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1028.14367675781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1028.60314941406",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1029.21594238281",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1029.40747070312",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1029.63732910156",0,0,0,0,0,0,0,0,8,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1029.8671875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1030.09704589844",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1030.36535644531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1030.48034667969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1030.86364746094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1031.2470703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1031.43884277344",0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1031.70727539062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1031.97570800781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1032.32092285156",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1032.47436523438",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1032.6279296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1032.81970214844",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1033.12670898438",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1033.54895019531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,21,40.7256963866204,18.8218449062342,21,28.5986733001658,0,0,0,0,0,0,0,19,32,175,54,0,23,49,37,0,0 +"1034.12475585938",0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,15,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1034.54724121094",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,29,19,30.7284931200358,0,20,23.6048329779673,0,0,0,0,0,0,0,0,23,112,33,0,21,43,31,0,0 +"1035.16174316406",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1035.5458984375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,16.7315135921244,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0 +"1036.19921875",0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1036.6220703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1036.85278320312",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1037.08337402344",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1037.544921875",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.8350228079067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1038.46813964844",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1038.58361816406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1039.0068359375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1039.50732421875",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1039.85375976562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1040.08483886719",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1040.50842285156",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1040.8935546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1041.04772949219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1041.51000976562",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1041.70275878906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1041.93395996094",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1042.28088378906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1042.396484375",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1042.70495605469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1042.85913085938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1043.20617675781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1043.55334472656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1044.09338378906",0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0,0,0,8,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1044.32482910156",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1044.55639648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1044.82653808594",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1045.52136230469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.760375880971,0,0,21.6728263444681,0,0,0,0,0,0,0,0,0,98,41,0,62,115,100,0,0 +"1046.1005859375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1046.56396484375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.763284483723,0,0,0,0,0,0,0,0,0,0,0,0,63,25,0,28,70,51,0,0 +"1047.10485839844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1047.4912109375",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0 +"1047.80041503906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0 +"1048.10961914062",0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1048.45751953125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1048.68957519531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1048.92150878906",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1049.30834960938",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1049.54040527344",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1050.23681640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1050.35290527344",0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1050.58508300781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1051.04943847656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,15,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1051.552734375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1051.74633789062",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1052.05615234375",0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1052.24987792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1052.40478515625",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1052.75341796875",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1053.06335449219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1053.37329101562",0,0,0,0,0,0,0,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1053.5283203125",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1053.99340820312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1054.419921875",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1055.00158691406",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1055.54455566406",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,22.7894619084909,0,0,18.7341862117982,0,0,0,0,0,0,0,0,17,61,29,0,0,0,0,0,0 +"1055.85498046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1055.97131347656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1056.16540527344",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1056.55346679688",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,15.7922586419063,16.8973644196655,0,18.7403458895996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1057.05798339844",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1057.56274414062",0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1058.02868652344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1058.26171875",0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1058.53369140625",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1058.99987792969",0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1059.46618652344",0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1060.04931640625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1060.59362792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1061.02136230469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1061.17687988281",0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1061.48815917969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1061.6826171875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1061.87719726562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1062.11059570312",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1062.42199707031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1062.53869628906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1062.92797851562",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1063.2783203125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1063.62878417969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1063.97924804688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1064.40771484375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1064.52453613281",0,0,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1064.953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1065.26489257812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1065.69360351562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1066.04443359375",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,10,35,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1066.35632324219",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1066.55126953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1067.05822753906",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1067.25329589844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1067.37036132812",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1067.5263671875",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1068.07263183594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1068.30676269531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1068.50183105469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1068.77514648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1069.24353027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1069.55590820312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1069.98547363281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1070.33703613281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1070.53234863281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1070.96215820312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1071.07934570312",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1071.47021484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1072.13464355469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1072.44750976562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1073.38610839844",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1073.62084960938",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1074.01208496094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1074.24694824219",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1074.52087402344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1074.63830566406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1075.06884765625",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1075.2646484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1075.61706542969",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1076.0478515625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1076.36120605469",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1076.98803710938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1077.53674316406",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1078.08544921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,15,0,0,19,22.8540105157176,19.9671819564116,26,0,0,0,0,0,0,0,0,16,15,0,0,0,0,0,0,0,0 +"1078.55603027344",0,0,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1079.06579589844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1079.41882324219",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1079.61499023438",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1080.08581542969",0,0,0,0,0,0,0,0,10,5,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1080.39978027344",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1080.59594726562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1081.06701660156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1081.26330566406",0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1081.53820800781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1082.04870605469",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,16,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1082.36291503906",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1082.5986328125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1083.07019042969",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1083.54174804688",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1084.01342773438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1084.13134765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1084.32800292969",0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1084.60314941406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1084.87841796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1085.03576660156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1085.15380859375",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1085.58642578125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1086.01928710938",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1086.25537109375",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1086.4521484375",0,0,0,0,0,0,0,0,9,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1086.76696777344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1087.00317382812",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1087.20007324219",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1087.39685058594",0,0,0,0,0,0,0,0,8,5,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1087.59375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1088.06628417969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1088.30261230469",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1088.57836914062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1089.05114746094",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1089.36645507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1089.64233398438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1089.76049804688",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1089.9970703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1090.11535644531",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1090.39135742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1090.54907226562",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1091.06164550781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1091.29833984375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1091.4560546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1091.69274902344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1092.08728027344",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1092.20568847656",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1092.40307617188",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1092.99499511719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1093.27136230469",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1093.46875",0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1093.58728027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1094.06115722656",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1094.41662597656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1094.53503417969",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,17.9007718984226,15,0,20.9692016109927,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0 +"1094.93017578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1095.04870605469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1095.4833984375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1096.11572265625",0,0,0,0,0,0,0,0,9,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1096.47155761719",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1096.62976074219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1097.06469726562",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1097.26245117188",0,0,0,0,0,0,0,0,8,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1097.53930664062",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1097.69750976562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1098.25146484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1098.40966796875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1098.56799316406",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1099.04296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1099.32006835938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1099.63684082031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1100.15161132812",0,0,0,0,0,0,0,0,0,6,13,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1100.58728027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1101.10229492188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1101.2607421875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1101.37963867188",0,0,0,0,0,0,0,0,8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1101.5380859375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1102.05334472656",0,0,0,0,0,0,0,0,17,11,29,25,0,0,0,45,0,0,0,0,14,0,0,17,0,0,16,0,0,0,21,0,0,0,0,0,0,0,0,0,21,19,15,0,27,22,0,16.9220270723795,0,23,0,0,17,0,22,17,0,0,27,21,0,0,0,0,0,0,0,0 +"1102.44982910156",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1102.6083984375",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1103.08422851562",0,0,0,0,0,0,0,0,12,10,14,17,0,0,0,34,0,0,0,0,10,0,0,17,0,0,9,0,0,0,17,0,0,0,0,0,0,0,0,0,16,15,0,0,0,0,0,0,15,0,0,0,15,0,17,18,0,0,24,20,0,0,0,0,0,0,0,0 +"1103.56005859375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1104.11547851562",0,0,0,0,0,0,0,0,0,6,12,15,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1104.31384277344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1104.43286132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1104.59167480469",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1105.10754394531",0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1105.54418945312",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1106.25891113281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1106.45751953125",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1106.65612792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1106.97387695312",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1107.21228027344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1107.68908691406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1108.04675292969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1108.20581054688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1108.36474609375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1108.64306640625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1109.08044433594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1109.39855957031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1109.59741210938",0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1109.83605957031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1110.35314941406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1110.47253417969",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1110.87048339844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1111.22863769531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1111.38793945312",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1111.5869140625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1111.78601074219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1111.98510742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1112.34338378906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1112.54260253906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1112.74169921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1113.25952148438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1113.45874023438",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1113.69775390625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1114.13610839844",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1114.29553222656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1114.654296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1114.85363769531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1115.05297851562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1115.29223632812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1115.49157714844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1115.81066894531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1116.08984375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1116.44885253906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1116.72814941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1116.927734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1117.48645019531",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1118.00537109375",0,0,0,0,0,0,0,0,8,8,15,16,0,0,0,19,0,0,0,0,13,26,0,10,0,0,13,0,0,0,0,0,0,0,0,0,0,0,15,0,12,0,15,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1118.40466308594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1119.00366210938",0,0,0,0,0,0,0,0,8,5,9,14,0,0,0,0,0,0,0,0,14,12,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1119.44311523438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1119.56298828125",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1119.68273925781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1120.04235839844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1120.2822265625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1120.40209960938",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1120.68188476562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1121.04162597656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1121.36145019531",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1121.56140136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1121.80126953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1122.12121582031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1122.44128417969",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1122.72131347656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1122.92138671875",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1123.28149414062",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1124.0419921875",0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,21,0,0,0,0,0,0,0,0,0,0,8,0,0,0,13,0,0,0,0,0,0,0,0,0,11,14,17,19,24,0,18,21.9836670768542,19,28,22,0,9,0,22,23,0,0,29,19,0,0,0,0,0,0,0,0 +"1124.52233886719",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1125.04296875",0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,12,17,19,21,0,18,0,0,26,0,0,8,0,12,17,0,0,18,0,0,0,0,0,0,0,0,0 +"1125.72387695312",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1126.08447265625",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0 +"1126.32482910156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1126.52526855469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1127.16650390625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1127.4873046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1127.68774414062",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1128.1689453125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1128.36950683594",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1128.61010742188",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1129.17175292969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1129.49279785156",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1129.6533203125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1129.89404296875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1130.4560546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1130.61669921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1130.73706054688",0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1131.17883300781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1131.4599609375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1131.62060546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1132.14282226562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1132.46423339844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1132.70532226562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1132.98657226562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1133.26794433594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1133.46899414062",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1133.669921875",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1133.99157714844",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1134.39367675781",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1134.51440429688",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1134.67529296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1135.11767578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1135.31884765625",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1135.47973632812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1135.68090820312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1136.04309082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1136.24438476562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1136.36511230469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1136.56640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1137.00915527344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1137.291015625",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1137.65344238281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1137.77429199219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1138.13684082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1138.41882324219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1138.45910644531",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1138.53967285156",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1139.0634765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1139.18432617188",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1139.46643066406",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1139.74865722656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1140.03076171875",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1140.232421875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1140.5146484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1140.99853515625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1141.3212890625",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1141.48266601562",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1141.845703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1141.92639160156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1142.12817382812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1142.24926757812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1142.45104980469",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1142.85461425781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1143.05639648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1143.29870605469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1143.54089355469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1143.62170410156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1144.22741699219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1144.26782226562",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1144.42932128906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1144.71215820312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1144.75256347656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1144.95458984375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1145.27783203125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1146.04565429688",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1146.32861328125",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1146.57116699219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1147.05639648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1147.3798828125",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1147.54174804688",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1148.06762695312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1148.47216796875",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1149.07922363281",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1149.48400878906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1149.80786132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1150.21276855469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1150.33435058594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1150.45581054688",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1150.7392578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1151.14440917969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1151.34692382812",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1151.54956054688",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1151.67102050781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1151.91418457031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1152.23840332031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1152.35998535156",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1152.68432617188",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1152.92749023438",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1153.21130371094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1153.4140625",0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1153.57629394531",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1153.81970214844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1154.18469238281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1154.42810058594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1154.59033203125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1154.87438964844",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1155.361328125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1155.72668457031",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1156.01086425781",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1156.29504394531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1156.53869628906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1156.66052246094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1157.26965332031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1157.43212890625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1157.55395507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1157.67590332031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1158.00085449219",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1158.4072265625",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1158.89501953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1159.0576171875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1159.3828125",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1160.11474609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1160.44006347656",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1160.92822265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1161.05029296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1161.25366210938",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1161.45715332031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1161.61999511719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1161.94555664062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1162.27111816406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1162.43395996094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1162.59680175781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1162.71899414062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1163.00402832031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1163.61486816406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1163.85925292969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1163.9814453125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1164.10363769531",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1164.63330078125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1165.12231445312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1165.69299316406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1165.93762207031",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1166.18225097656",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1166.46765136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1166.67163085938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1166.91625976562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1167.12023925781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1167.44665527344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1167.77294921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1167.85461425781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1168.466796875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1168.87487792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1168.91577148438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1169.32397460938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1169.44653320312",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1169.65063476562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1169.97741699219",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,8,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1170.34497070312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1170.46752929688",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1170.95776367188",0,0,0,0,0,0,0,0,8,7,9,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1171.4072265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1171.52990722656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1171.693359375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1172.02026367188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1172.34741210938",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1172.67443847656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1173.08337402344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1173.45141601562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1173.57409667969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1173.69689941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1173.94226074219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1174.51513671875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1174.96533203125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1175.25183105469",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1175.62023925781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1175.78405761719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1175.82495117188",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1176.275390625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1176.64392089844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1176.9716796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1177.21740722656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1177.54516601562",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1177.83203125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1178.24182128906",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1178.52868652344",0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1178.89770507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1179.4716796875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1179.6357421875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1180.2099609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1180.5791015625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1180.78430175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1180.98937988281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1181.44079589844",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1181.72814941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1182.34387207031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1182.50817871094",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1182.63134765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1182.75451660156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1182.87768554688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1183.0830078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1183.37048339844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1183.61694335938",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1183.65808105469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1184.10998535156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1184.35656738281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1184.56201171875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1184.68530273438",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1184.97302246094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1185.58959960938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,18,24,0,37,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0 +"1185.95959472656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1186.16516113281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1186.61755371094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0 +"1187.56384277344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1187.93420410156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1188.51037597656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1188.83972167969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1189.16906738281",0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1189.49853515625",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1190.28100585938",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1190.48706054688",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1190.89904785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1191.06384277344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1191.35229492188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1191.3935546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1191.88818359375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1192.1767578125",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1192.38293457031",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1192.67150878906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1193.04260253906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1193.57885742188",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,60,39,25,0,0,0,57,0,0,0,0,0,0,0,19,32,117,37,0,18,42,23,0,0 +"1194.56909179688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,43,19,0,0,0,0,33,0,0,0,0,0,0,0,14,20,83,20,0,19,32,24,0,0 +"1195.55969238281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,22,0,0,0,0,21,0,0,0,0,0,0,0,0,16,204,69,0,61,95,60,0,0 +"1196.13781738281",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1196.59204101562",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,40,0,37,50,40,0,0 +"1197.58361816406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,29,0,0,0,0 +"1198.12072753906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1198.61682128906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1198.74084472656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1199.03015136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1199.56774902344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1199.73315429688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1200.06408691406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1200.56042480469",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1200.72595214844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1201.18115234375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1201.51220703125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1201.96752929688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1202.21594238281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1202.46435546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1202.58850097656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1202.6298828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1203.04406738281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1203.20971679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1203.37536621094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1203.74816894531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1203.99670410156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1204.32824707031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1205.07421875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1205.23999023438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1205.40576171875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1205.86181640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1206.02770996094",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1206.23510742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1206.4423828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1206.85717773438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1207.06457519531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1207.56237792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1208.10192871094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1208.59997558594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1208.89050292969",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1209.18115234375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1209.51330566406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1209.80407714844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1210.05322265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1210.51013183594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1211.34118652344",0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1211.67358398438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1212.00610351562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1212.421875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1212.83764648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1213.04553222656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1213.50305175781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1213.79431152344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1214.00219726562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1214.29345703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1214.66796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1214.83447265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1215.5419921875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,19,21,0,0,0,24,0,0,0,0,0,0,0,0,15,69,0,0,26,32,0,0,0 +"1215.95837402344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1216.5830078125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,15,0,20,0,0,0,0,0,0 +"1217.58276367188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,127,44,0,59,76,40,0,0 +"1218.12438964844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1218.54113769531",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,25,0,40,46,35,0,0 +"1219.54174804688",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1220.04211425781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1220.25061035156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1220.5009765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1220.62609863281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1220.91809082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1221.16845703125",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1221.5439453125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1221.7109375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1221.83618164062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1222.00305175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1222.21179199219",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1222.54577636719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1222.75451660156",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1223.00500488281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1223.25561523438",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1223.50610351562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1224.17443847656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1224.42517089844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1224.59228515625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1224.71765136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1225.302734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1225.42810058594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1225.55346679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1225.76257324219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1226.01330566406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1226.26416015625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1226.68237304688",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1226.849609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1227.22607421875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1227.39343261719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1227.51892089844",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1227.68627929688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1228.06274414062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1228.18835449219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1228.23022460938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1228.27197265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1228.56494140625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1228.94165039062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1229.19274902344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1229.61145019531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1230.07202148438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1230.28149414062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1230.44897460938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1230.86779785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1230.99353027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1231.37060546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1231.62194824219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1232.12487792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1232.46020507812",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1232.5859375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1232.83752441406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1233.08911132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1233.42456054688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1233.80200195312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1234.22143554688",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1234.34729003906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1234.51501464844",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1234.68286132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1234.9345703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1235.27026367188",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1235.43811035156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1235.73193359375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1235.89990234375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1236.06774902344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1236.52954101562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1236.65551757812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1236.90747070312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1237.53747558594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1237.99951171875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1238.54577636719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1239.51245117188",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,24,40,23,0,0 +"1240.60571289062",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0 +"1241.02624511719",0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1241.53100585938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1241.74145507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1241.86767578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1242.16223144531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1242.58312988281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1243.04614257812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1243.50915527344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1243.63549804688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1243.88818359375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1244.056640625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1244.18298339844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1244.51989746094",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1244.94116210938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1245.23608398438",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1245.5732421875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1246.07897949219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1246.45837402344",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1246.8798828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1247.34375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1247.59680175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1247.97631835938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1248.52478027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1248.94665527344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1249.19995117188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1249.53759765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1250.00183105469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1250.29736328125",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1250.63513183594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1250.93078613281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1251.35314941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1251.56433105469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1251.85998535156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1252.15576171875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1252.28247070312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1252.74731445312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1252.91638183594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1253.29675292969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1253.59265136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1253.84643554688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1254.05773925781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1254.39611816406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1254.69213867188",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1255.15734863281",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1255.45349121094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1255.62280273438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1255.7919921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1256.13049316406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1256.2998046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1256.5537109375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1256.80773925781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1257.06164550781",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1257.35803222656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1257.48510742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1257.73913574219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1258.24731445312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1258.88269042969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1259.51831054688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1260.02685546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1260.23876953125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1260.57788085938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1260.74743652344",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1260.9169921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1261.12902832031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1261.59558105469",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1262.01965332031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1262.57116699219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1262.69848632812",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1263.08032226562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1263.3349609375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1263.63208007812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1263.84423828125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1264.31127929688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1264.52355957031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1264.7783203125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1265.07556152344",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1265.28796386719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1265.71264648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1266.34997558594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1266.51989746094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1266.732421875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1267.19995117188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1267.32739257812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1267.49743652344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1267.83752441406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1268.05017089844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1268.177734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1268.22021484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1269.11328125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1269.36853027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1269.58129882812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1269.83654785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1270.04931640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1270.30456542969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1270.68762207031",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1271.15588378906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1271.58166503906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1272.60375976562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1273.02966308594",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1273.75402832031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1273.96716308594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1274.35070800781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1274.56384277344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1274.734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1274.99011230469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1275.37390136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1275.41650390625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1275.62976074219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1275.75769042969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1275.97094726562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1276.01354980469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1276.26953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1276.52551269531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1276.65344238281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1276.90942382812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1277.20812988281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1277.33618164062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1277.59216308594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1277.8056640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1278.01904296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1278.14709472656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1278.27514648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1278.48864746094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1278.65942382812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1278.91552734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1279.21447753906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1279.34265136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1279.68432617188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1279.94055175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1280.15417480469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1280.32507324219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1280.53869628906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1281.0087890625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1281.52160644531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1281.7353515625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1282.20568847656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1282.41943359375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1282.88977050781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1283.10363769531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1283.40307617188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1283.65966796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1283.74523925781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1284.001953125",0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1284.60107421875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1285.02905273438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1285.15747070312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1285.32861328125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1285.58557128906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1285.79956054688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1286.013671875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1286.35620117188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1286.74169921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1286.9130859375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1287.42712402344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1287.64135742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1287.85559082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1288.11267089844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1288.41259765625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1288.54125976562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1288.71264648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1289.14135742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0 +"1289.61303710938",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1290.17041015625",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1290.77099609375",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1291.11413574219",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1291.32873535156",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1291.50036621094",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1291.84362792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1292.14404296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1292.40161132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1292.83093261719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1293.04553222656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1293.51794433594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1293.90441894531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1294.076171875",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1294.54870605469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1294.93542480469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1295.36511230469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1295.623046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1295.794921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1296.05285644531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1296.39672851562",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1296.69763183594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1296.82666015625",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1296.95568847656",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1297.25671386719",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1297.51477050781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1297.81579589844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1297.94482421875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1298.07397460938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1298.50415039062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1298.80529785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1299.0205078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1299.27868652344",0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1299.49389648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1299.66613769531",0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1300.01049804688",0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1300.35498046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1300.82861328125",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1301.17321777344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1301.30236816406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1301.431640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1301.64697265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1301.90551757812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1302.07775878906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1302.25012207031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1302.37939453125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1302.50866699219",0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1302.89660644531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1303.15515136719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1303.41381835938",0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1303.67248535156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1303.8017578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1303.84484863281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1304.06042480469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1304.3623046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1304.57800292969",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1304.83666992188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1305.138671875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1305.65637207031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1306.17419433594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1306.34680175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1306.60571289062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1306.82153320312",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1307.2099609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1307.51220703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1307.68493652344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1307.814453125",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1308.46228027344",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1308.67822265625",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1308.98059082031",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1309.36938476562",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1309.75830078125",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1310.017578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1310.1904296875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1310.36340332031",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1310.92529296875",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1311.27124023438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1311.40087890625",0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1311.61706542969",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1311.66040039062",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1312.00634765625",0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1312.43884277344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1312.69836425781",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1312.9580078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1313.08776855469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1313.5205078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0 +"1314.16967773438",0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1314.68920898438",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1314.90563964844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1315.07885742188",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1315.51184082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1315.72839355469",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1316.5947265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1317.11474609375",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1317.50476074219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1317.67810058594",0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1317.89489746094",0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1318.15490722656",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1318.4150390625",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1318.6318359375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1318.67517089844",0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1318.93542480469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1319.32568359375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1319.75939941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1319.97631835938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1320.23657226562",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1320.67053222656",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1321.06103515625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1321.23461914062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1321.58190917969",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1321.79895019531",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1322.23303222656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1322.40673828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1322.53698730469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1322.58044433594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1322.79760742188",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1323.36218261719",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1323.66625976562",0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1323.97033691406",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1324.31787109375",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1324.75244140625",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1325.05676269531",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1325.27404785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1325.40441894531",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1325.79565429688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1326.01306152344",0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1326.44787597656",0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1326.70886230469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1327.18725585938",0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1327.75280761719",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1328.10095214844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1328.27502441406",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1328.71020507812",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0 +"1329.10192871094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1329.31958007812",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1329.62438964844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1330.14685058594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1330.32104492188",0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1330.6259765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1330.93090820312",0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1331.45361328125",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1331.9765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1332.19445800781",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1332.45593261719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1332.76098632812",0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1333.1533203125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1333.67663574219",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1334.11267089844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1334.287109375",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1334.548828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1334.89782714844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1335.072265625",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1335.29052734375",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1335.55224609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1335.7705078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1335.81408691406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1336.16320800781",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1336.59973144531",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1336.94897460938",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1337.12365722656",0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1337.5166015625",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1337.822265625",0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1338.08435058594",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1338.302734375",0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1338.56481933594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1338.60852050781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1338.9580078125",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1339.39501953125",0,0,0,0,0,0,0,0,5,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1339.6572265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1339.83203125",0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1340.35656738281",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1340.75",0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1340.96862792969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1341.09973144531",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1341.18725585938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1341.44958496094",0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1341.9306640625",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1342.28063964844",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1342.54309082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1342.76196289062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1343.0244140625",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1343.19946289062",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1343.68090820312",0,0,0,0,0,0,0,0,5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1343.9873046875",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1344.29370117188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1344.46887207031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1344.68774414062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1344.86291503906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1345.16943359375",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1345.43225097656",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1345.607421875",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1345.95776367188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1346.13305664062",0,0,0,0,0,0,0,0,0,4,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1346.61499023438",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1346.8779296875",0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1347.228515625",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1347.49145507812",0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1347.75439453125",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1348.23669433594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1348.63122558594",0,0,0,0,0,0,0,0,5,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1348.93823242188",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1349.15747070312",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1349.72778320312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1349.94702148438",0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1350.16638183594",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1350.38586425781",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1350.69299316406",0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1351.35131835938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1351.61462402344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1351.74633789062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1351.92199707031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1352.0537109375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1352.40490722656",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1352.71228027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1352.84411621094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1352.88806152344",0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1353.15148925781",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1353.5908203125",0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1353.76647949219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1353.81042480469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1353.85437011719",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1354.20593261719",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1354.46948242188",0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1355.12878417969",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1355.34851074219",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1355.6123046875",0,0,0,0,0,0,0,0,5,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1356.05200195312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1356.40368652344",0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1356.66760253906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1356.93151855469",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1357.15148925781",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1357.63537597656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1357.76733398438",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1357.9873046875",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1358.25134277344",0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1358.51538085938",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1358.82348632812",0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1358.95556640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1359.08752441406",0,0,0,0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1359.52783203125",0,0,0,0,0,0,0,0,5,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1359.92407226562",0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1360.14416503906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1360.23229980469",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1360.49658203125",0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1360.89294433594",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1361.1572265625",0,0,0,0,0,0,0,0,5,4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1361.64184570312",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1361.95031738281",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1362.30285644531",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1362.65539550781",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1362.87585449219",0,0,0,0,0,0,0,0,8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1363.05212402344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1363.27258300781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1363.75756835938",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1363.93395996094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1363.97802734375",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1364.19848632812",0,0,0,0,0,0,0,0,5,4,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1364.77197265625",0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1364.99243164062",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1365.25720214844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1365.38952636719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1365.52197265625",0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1365.91906738281",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1366.18383789062",0,0,0,0,0,0,0,0,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1366.5810546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1366.75769042969",0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1366.84594726562",0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1367.11083984375",0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1367.33154296875",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1367.59643554688",0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1367.72900390625",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1367.94970703125",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1368.17053222656",0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1368.6123046875",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1368.83312988281",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0 +"1369.49584960938",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1369.80517578125",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1370.11450195312",0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1370.42395019531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1370.60070800781",0,0,0,0,0,0,0,0,6,5,5,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1370.95446777344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1371.17553710938",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1371.57348632812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1371.61767578125",0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1371.75036621094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1371.92724609375",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1372.28100585938",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1372.67919921875",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1372.98889160156",0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1373.21008300781",0,0,0,0,0,0,0,0,7,4,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0 +"1373.6083984375",0,0,0,0,0,0,0,0,0,4,6,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1373.96240234375",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1374.40502929688",0,0,0,0,0,0,0,0,6,0,5,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1374.89196777344",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1375.37902832031",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1375.73327636719",0,0,0,0,0,0,0,0,4,0,6,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1375.9990234375",0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1376.30908203125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1376.57495117188",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1376.70788574219",0,0,0,0,0,0,0,0,4,0,6,6,0,0,0,0,0,0,0,0,4,5,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1377.28381347656",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1377.6826171875",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1378.12585449219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1378.30322265625",0,0,0,0,0,0,0,0,5,4,5,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1378.79089355469",0,0,0,0,0,0,0,0,4,4,5,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1379.01257324219",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1379.32299804688",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1379.58898925781",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1379.72204589844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1379.85510253906",0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1380.56494140625",0,0,0,0,0,0,0,0,0,4,5,6,0,0,0,0,0,0,0,0,5,5,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1381.05297851562",0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,5,5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1381.49670410156",0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,7,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1381.76306152344",0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0 +"1382.1181640625",0,0,0,0,0,0,0,0,0,4,5,5,0,0,0,0,0,0,0,0,6,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1382.51770019531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1382.65087890625",0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1382.87292480469",0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1383.22814941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1383.31689453125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1383.58337402344",0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1383.80541992188",0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,4,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1384.29406738281",0,0,0,0,0,0,0,0,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1384.56066894531",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1384.69396972656",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1384.96057128906",0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1385.22717285156",0,0,0,0,0,0,0,0,6,3,6,6,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1385.67163085938",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1386.16064453125",0,0,0,0,0,0,0,0,4,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1386.38293457031",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1386.82751464844",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1387.00537109375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1387.18322753906",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0 +"1387.62805175781",0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1387.80590820312",0,0,0,0,0,0,0,0,4,4,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1387.98388671875",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1388.20629882812",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1388.47326660156",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,6,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1388.69567871094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1388.740234375",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1388.91821289062",0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1389.09619140625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1389.22973632812",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,0,0,0,0,0,5,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,6,0,0,5,0,0,0,7,0,0,0,0,0,0,0,0 +"1389.85278320312",0,0,0,0,0,0,0,0,6,4,8,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1390.03088378906",0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1390.208984375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1390.25354003906",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1390.60961914062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1390.83227539062",0,0,0,0,0,0,0,0,4,4,5,0,0,0,0,6,0,0,0,0,4,4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,4,4,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1391.27770996094",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1391.45581054688",0,0,0,0,0,0,0,0,5,3,5,6,0,0,0,5,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,4,4,0,0,0,0,0,6,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1391.85668945312",0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1391.99035644531",0,0,0,0,0,0,0,0,6,3,4,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1392.43591308594",0,0,0,0,0,0,0,0,4,5,5,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,6,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1393.14880371094",0,0,0,0,0,0,0,0,4,3,0,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,7,0,0,0,0,0,0,5,5,0,0,0,6,0,0,0,0,0,0,0,0 +"1393.41625976562",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,6,0,0,0,0,0,5,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1393.68371582031",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0,0,0,0,0 +"1393.99572753906",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,5,5,5,6,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,6,0,0,0,0,0,0,0,0 +"1394.44165039062",0,0,0,0,0,0,0,0,0,4,6,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1394.70910644531",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,4,5,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,9,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1395.11047363281",0,0,0,0,0,0,0,0,5,3,7,0,0,0,0,6,0,0,0,0,6,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1395.37805175781",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1395.60107421875",0,0,0,0,0,0,0,0,4,3,4,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,4,7,0,0,5,6,0,0,0,0,0,0,0,0 +"1396.18103027344",0,0,0,0,0,0,0,0,4,4,5,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,5,0,4,0,0,5,0,0,0,0,6,0,0,0,4,0,4,5,0,0,6,0,0,0,0,0,0,0,0,0 +"1396.53796386719",0,0,0,0,0,0,0,0,4,4,5,7,0,0,0,0,0,0,0,0,5,5,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,5,4,0,0,0,0,6,0,6,0,0,0,4,0,4,0,0,0,0,7,0,0,0,0,0,0,0,0 +"1397.02893066406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1397.1181640625",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,4,4,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1397.29663085938",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,5,4,4,5,0,0,6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1397.60913085938",0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,4,5,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0,0,0,0,0 +"1397.83227539062",0,0,0,0,0,0,0,0,6,6,5,0,0,0,0,8,0,0,0,0,0,4,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,4,0,4,4,5,0,0,9,0,0,0,0,0,0,4,0,4,5,0,0,0,0,0,9,0,8,0,0,0,0 +"1398.27880859375",0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1398.54663085938",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,0,0,0,0,0,5,4,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,5,0,4,4,0,0,0,7,6,0,6,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1398.99328613281",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1399.21655273438",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1399.39526367188",0,0,0,0,0,0,0,0,5,3,6,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1399.75256347656",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,4,4,0,6,0,0,0,0,0,6,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1400.19934082031",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,5,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1400.37805175781",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1400.60144042969",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1400.64624023438",0,0,0,0,0,0,0,0,4,4,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,5,5,0,5,0,0,0,0,0,0,0,0,6,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0 +"1400.958984375",0,0,0,0,0,0,0,0,5,3,5,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,4,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1401.40600585938",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,6,0,0,0,0,0,0,0,6,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1401.71887207031",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,5,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0 +"1401.98706054688",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,4,4,6,0,0,0,0,5,6,0,0,4,0,4,0,0,0,0,6,0,0,0,0,0,0,0,0 +"1402.47888183594",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1402.70251464844",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,7,0,0,0,0,0,0,0,0,0,4,0,0,7,0,0,0,0,0,0,0,0,0 +"1402.88146972656",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,7,0,5,0,0,5,0,5,4,0,0,0,0,0,0,0,9,0,0,0,0 +"1403.06030273438",0,0,0,0,0,0,0,0,4,3,5,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,6,0,0,0,5,0,5,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1403.28393554688",0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,4,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1403.55236816406",0,0,0,0,0,0,0,0,5,3,4,5,0,0,0,5,0,0,0,0,5,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,5,0,4,0,0,0,0,0,0,5,0,0,0,0,4,5,0,0,0,6,0,0,0,0,0,0,0,0 +"1403.86547851562",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,0,4,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1404.08923339844",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,5,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,6,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1404.40234375",0,0,0,0,0,0,0,0,5,5,4,6,0,0,0,0,0,0,0,0,4,4,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,4,0,4,0,0,0,6,0,5,0,0,0,5,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1404.84985351562",0,0,0,0,0,0,0,0,4,3,6,4,0,0,0,4,0,0,0,0,0,4,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,5,0,0,0,4,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1405.07373046875",0,0,0,0,0,0,0,0,6,4,4,0,0,0,0,4,0,0,0,0,4,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,5,8,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1405.43176269531",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,5,5,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1405.78991699219",0,0,0,0,0,0,0,0,4,4,4,5,0,0,0,4,0,0,0,0,0,5,0,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,5,0,0,7,0,0,0,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1406.10327148438",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,4,0,0,0,0,5,5,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,0,4,0,5,0,0,0,0,5,5,0,0,6,0,4,4,0,0,0,0,0,0,0,8,0,0,0,0 +"1406.77502441406",0,0,0,0,0,0,0,0,0,5,4,4,0,0,0,0,0,0,0,0,4,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0 +"1406.99890136719",0,0,0,0,0,0,0,0,4,5,4,4,0,0,0,0,0,0,0,0,5,4,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,6,4,4,0,0,6,7,6,0,0,0,4,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1407.26770019531",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1407.31237792969",0,0,0,0,0,0,0,0,0,3,5,5,0,0,0,5,0,0,0,0,5,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,5,0,0,0,0,5,5,0,0,4,0,4,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1407.80517578125",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,8,0,5,0,0,4,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1408.07397460938",0,0,0,0,0,0,0,0,0,3,6,4,0,0,0,0,0,0,0,0,4,4,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,5,0,0,0,4,0,4,4,0,0,5,0,0,0,0,7,0,0,0,0 +"1408.56689453125",0,0,0,0,0,0,0,0,5,3,0,5,0,0,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,6,0,0,0,7,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1408.791015625",0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,5,5,4,0,0,6,5,0,5,5,0,0,3,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1409.2392578125",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,6,5,0,0,5,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1409.64270019531",0,0,0,0,0,0,0,0,4,4,6,5,0,0,0,0,0,0,0,0,6,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,6,5,0,0,6,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1409.95642089844",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,5,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1410.1806640625",0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,4,4,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,5,0,5,3,0,4,0,0,0,6,0,5,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1410.49450683594",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,0,0,0,0,8,0,5,5,8,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1410.85327148438",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,5,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,0,0,0,0,0,5,0,0,0,5,0,0,4,0,0,5,5,0,0,0,0,0,0,0,0 +"1411.43640136719",0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,5,0,0,0,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,4,7,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1411.70556640625",0,0,0,0,0,0,0,0,4,4,6,5,0,0,0,4,0,0,0,0,3,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,3,0,0,0,0,6,0,0,0,0,3,0,3,5,0,0,0,0,0,8,0,0,0,0,0,0 +"1411.97473144531",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,4,0,0,0,0,3,6,0,5,0,0,5,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,5,0,0,0,0,0,4,0,4,4,0,0,4,0,0,0,0,9,0,0,0,0 +"1412.28881835938",0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,4,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,4,5,0,0,0,0,0,6,0,0,0,0,3,6,0,0,0,5,0,0,0,0,0,0,0,0 +"1412.51318359375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,5,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,4,0,0,0,0,6,0,0,0,0 +"1412.78247070312",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,7,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,4,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1413.0517578125",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,3,5,3,0,8,0,5,0,0,5,0,0,4,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1413.50073242188",0,0,0,0,0,0,0,0,4,4,5,4,0,0,0,0,0,0,0,0,4,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,5,0,0,0,6,0,0,0,0,0,3,0,3,5,0,0,4,0,0,7,0,0,0,0,0,0 +"1413.77001953125",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,0,0,0,0,0,3,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,4,4,0,0,0,7,0,0,0,0,3,0,3,4,0,0,4,0,0,0,0,8,0,0,0,0 +"1414.26391601562",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,6,3,0,5,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0,3,4,5,5,0,0,5,0,0,0,0,0,4,0,4,4,0,0,5,6,0,0,0,0,0,0,0,0 +"1414.62316894531",0,0,0,0,0,0,0,0,3,4,5,5,0,0,0,4,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,8,5,0,0,0,4,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1414.93762207031",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,6,3,3,5,0,0,0,7,0,4,0,0,0,0,4,0,0,0,0,6,0,0,0,0,0,0,0,0 +"1415.20703125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,5,0,0,0,0,0,5,0,0,4,0,4,5,0,0,5,5,0,0,0,0,0,0,0,0 +"1415.74609375",0,0,0,0,0,0,0,0,3,4,6,0,0,0,0,5,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,4,5,0,4,0,0,0,0,5,5,0,0,3,0,4,4,0,0,0,0,0,0,0,7,0,0,0,0 +"1415.97082519531",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,3,0,0,0,0,5,6,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,5,0,6,0,0,4,4,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1416.37524414062",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,4,0,0,0,0,3,4,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,4,4,0,0,0,6,4,5,0,0,4,0,4,4,0,0,6,0,0,0,0,6,0,0,0,0 +"1416.77966308594",0,0,0,0,0,0,0,0,3,4,7,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,4,0,0,0,3,0,5,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1416.95947265625",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,3,4,3,6,0,0,0,0,4,5,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,11,0,0 +"1417.13928222656",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,6,0,6,0,0,4,5,0,0,3,0,3,3,0,0,0,5,0,0,0,6,0,0,0,0 +"1417.49890136719",0,0,0,0,0,0,0,0,5,4,5,4,0,0,0,4,0,0,0,0,3,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,5,0,4,3,4,5,0,0,0,0,0,4,0,0,3,0,3,5,0,0,0,6,0,0,0,6,0,0,0,0 +"1417.81359863281",0,0,0,0,0,0,0,0,4,0,5,4,0,0,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,6,5,4,0,0,0,0,0,5,4,7,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1418.03833007812",0,0,0,0,0,0,0,0,3,0,5,5,0,0,0,3,0,0,0,0,3,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,0,6,5,0,0,4,0,4,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1418.30810546875",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,5,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,0,0,4,4,0,0,4,0,4,3,0,0,0,0,0,0,0,9,0,0,0,0 +"1418.89282226562",0,0,0,0,0,0,0,0,0,4,6,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,0,5,5,0,0,3,0,3,4,0,0,5,0,0,0,0,7,0,0,0,0 +"1419.20764160156",0,0,0,0,0,0,0,0,6,4,4,6,0,0,0,3,0,0,0,0,3,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,0,0,5,6,7,0,3,0,3,4,0,0,4,0,0,7,0,6,0,0,0,0 +"1419.65747070312",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,5,0,0,0,0,3,3,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,4,4,3,7,19,15,6,6,7,8,10,0,4,0,5,7,0,0,7,8,18,7,0,7,12,10,0,0 +"1420.69250488281",0,0,0,0,0,0,0,0,3,3,7,4,0,0,0,5,0,0,0,0,3,5,0,6,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,5,3,3,4,13,11,7,9,6,8,8,0,5,0,4,5,0,0,6,7,0,8,0,6,0,0,0,0 +"1421.09753417969",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,4,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,0,8,0,6,7,5,4,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1421.59265136719",0,0,0,0,0,0,0,0,5,4,6,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,4,4,9,0,5,6,5,5,8,0,3,0,4,4,0,0,0,5,0,0,0,6,0,0,0,0 +"1421.90783691406",0,0,0,0,0,0,0,0,5,4,5,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,4,5,9,0,5,6,4,4,0,0,4,0,3,4,0,0,5,5,0,9,0,6,0,0,0,0 +"1422.58325195312",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,5,3,5,0,0,0,5,0,5,5,0,0,3,0,4,5,0,0,0,5,0,0,0,7,0,11,0,0 +"1422.89855957031",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,4,4,0,7,7,0,4,4,0,0,3,0,5,4,0,0,6,7,15,8,0,7,0,10,0,0 +"1423.25891113281",0,0,0,0,0,0,0,0,3,5,0,4,0,0,0,3,0,0,0,0,3,4,0,5,0,0,3,0,0,0,5,0,0,0,0,0,0,0,4,0,4,3,4,4,0,6,0,6,4,4,0,0,3,0,3,5,0,0,4,5,0,7,0,7,0,11,0,0 +"1423.66430664062",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,5,4,0,0,5,6,4,0,0,0,0,0,0,4,0,0,7,5,0,0,0,0,13,0,0,0 +"1423.79956054688",0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,5,0,6,0,0,0,3,0,0,0,0,0,0,0,0,8,0,9,0,0,0,0 +"1423.97973632812",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,5,4,0,7,5,6,4,5,0,0,0,0,3,4,0,0,6,0,0,0,0,0,0,11,0,0 +"1424.205078125",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,3,0,0,0,0,3,3,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,6,0,6,4,6,0,0,4,0,5,3,0,0,0,6,0,7,0,7,10,0,0,0 +"1424.61059570312",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,4,0,0,0,0,3,0,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,3,0,4,0,0,0,0,0,5,5,8,0,3,0,4,4,0,0,0,6,0,0,0,6,0,0,0,0 +"1424.88110351562",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,6,4,0,0,0,3,0,4,4,0,0,0,0,0,9,0,0,0,9,0,0 +"1425.01623535156",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,5,3,4,0,0,6,8,4,6,8,0,3,0,4,4,0,0,5,6,0,7,0,6,0,0,0,0 +"1425.42199707031",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,4,4,0,7,0,8,4,5,0,0,4,0,3,3,0,0,0,5,0,0,0,7,0,0,0,0 +"1425.73754882812",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,4,0,0,0,0,4,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,4,0,7,0,7,4,5,0,0,5,0,4,3,0,0,4,5,0,9,0,7,11,9,0,0 +"1426.1884765625",0,0,0,0,0,0,0,0,3,0,5,5,0,0,0,4,0,0,0,0,4,4,0,6,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,6,0,6,0,0,5,5,0,0,3,0,3,4,0,0,7,6,0,8,0,6,0,0,0,0 +"1426.68444824219",0,0,0,0,0,0,0,0,4,0,5,4,0,0,0,5,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,7,0,0,7,0,0,0,0,4,0,0,4,0,0,0,0,7,0,0,0,0 +"1426.81982421875",0,0,0,0,0,0,0,0,4,6,6,4,0,0,0,5,0,0,0,0,4,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,6,3,3,0,0,0,0,0,6,5,7,0,3,0,5,4,0,0,4,0,0,0,0,0,0,10,0,0 +"1427.1806640625",0,0,0,0,0,0,0,0,4,3,6,4,0,0,0,5,0,0,0,0,4,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,6,6,6,0,0,0,0,3,4,0,0,4,7,0,8,0,6,0,0,0,0 +"1427.45129394531",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,0,4,0,0,0,0,5,0,0,0,4,0,0,5,0,0,0,0,0,9,0,0,0,0,0,0 +"1427.67687988281",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,0,8,0,0,0,0,3,0,4,5,0,0,4,0,0,0,0,7,0,0,0,0 +"1427.81225585938",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1427.85729980469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1427.90246582031",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,5,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,4,4,0,0,5,0,6,0,0,0,4,0,3,5,0,0,4,6,0,8,0,7,0,0,0,0 +"1428.30859375",0,0,0,0,0,0,0,0,5,0,5,6,0,0,0,4,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,6,0,7,0,3,0,3,4,0,0,4,0,0,7,0,6,0,0,0,0 +"1428.62451171875",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,4,0,0,0,0,4,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,6,4,4,0,0,3,0,4,5,0,0,5,7,0,0,0,9,0,0,0,0 +"1428.80505371094",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,3,0,0,0,0,0,4,0,7,0,3,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0 +"1428.9404296875",0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,4,3,0,0,0,0,0,6,5,0,0,3,0,4,4,0,0,5,5,0,0,0,6,0,0,0,0 +"1429.16613769531",0,0,0,0,0,0,0,0,5,3,5,7,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,0,6,5,4,0,0,3,0,4,3,0,0,0,0,0,8,0,0,0,0,0,0 +"1429.7529296875",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,4,0,0,0,0,3,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,3,4,0,0,5,0,4,5,0,0,3,0,3,4,0,0,0,5,0,0,0,7,0,0,0,0 +"1430.11413574219",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,4,0,0,0,0,4,6,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,4,0,0,5,0,5,5,0,0,0,0,3,4,0,0,0,5,0,7,0,6,0,0,0,0 +"1430.38513183594",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,4,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,3,3,0,0,0,0,7,0,4,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1430.65612792969",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,0,0,0,0,0,4,4,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,3,0,8,8,0,0,5,6,0,0,3,0,4,3,0,0,0,5,0,0,0,7,0,0,0,0 +"1431.06262207031",0,0,0,0,0,0,0,0,4,0,5,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,4,5,0,0,0,6,0,5,0,0,3,0,4,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1431.33361816406",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,4,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,6,4,5,0,0,3,0,3,8,0,0,0,5,0,7,0,0,0,0,0,0 +"1431.55944824219",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,4,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1431.740234375",0,0,0,0,0,0,0,0,3,5,5,5,0,0,0,3,0,0,0,0,4,4,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,4,3,3,4,0,6,5,0,5,4,7,0,3,0,4,3,0,0,0,0,0,7,0,6,0,0,0,0 +"1432.28247070312",0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,4,0,0,0,0,3,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,6,4,0,0,5,0,0,0,0,0,4,0,4,6,0,0,0,5,0,0,0,7,0,0,0,0 +"1432.64392089844",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1432.77954101562",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1432.82470703125",0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,4,0,0,0,0,3,5,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,8,4,5,0,0,3,0,3,0,0,0,0,6,0,0,0,0,0,0,0,0 +"1433.00549316406",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,4,0,0,0,0,3,3,0,3,0,0,6,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,5,0,0,0,0,4,5,0,0,4,0,4,4,0,0,0,5,0,7,0,6,0,0,0,0 +"1433.41235351562",0,0,0,0,0,0,0,0,4,3,6,5,0,0,0,4,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,5,0,0,0,5,0,0,0,0,0,4,0,4,4,0,0,5,5,0,0,0,6,0,0,0,0 +"1433.68359375",0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,7,0,7,5,5,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1433.81921386719",0,0,0,0,0,0,0,0,5,4,4,8,0,0,0,5,0,0,0,0,5,5,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,6,3,5,0,0,5,0,4,4,0,0,4,0,4,4,0,0,0,0,0,8,0,8,0,0,0,0 +"1434.22619628906",0,0,0,0,0,0,0,0,4,4,6,5,0,0,0,4,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,3,4,0,0,0,0,6,0,0,0,4,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1434.49755859375",0,0,0,0,0,0,0,0,4,6,4,5,0,0,0,3,0,0,0,0,4,4,0,4,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,3,5,3,4,0,0,8,6,7,6,0,0,4,0,5,5,0,0,6,0,0,0,0,0,0,0,0,0 +"1434.859375",0,0,0,0,0,0,0,0,4,3,7,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,0,0,5,6,4,4,0,0,0,0,5,4,0,0,0,5,0,0,0,6,0,0,0,0 +"1435.13073730469",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,3,4,5,0,0,0,0,8,4,0,0,0,4,0,5,4,0,0,5,0,0,0,0,6,0,0,0,0 +"1435.40209960938",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,5,0,0,0,0,4,5,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,0,4,4,5,0,0,6,6,0,5,0,0,5,0,3,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1435.89978027344",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,4,6,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1436.03552246094",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,6,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,5,5,0,0,5,7,5,4,0,0,0,0,3,4,0,0,4,0,0,7,0,0,0,0,0,0 +"1436.75964355469",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,3,4,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,6,6,0,0,0,0,3,0,5,5,0,0,0,7,0,0,0,0,0,0,0,0 +"1436.98596191406",0,0,0,0,0,0,0,0,6,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1437.12170410156",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,4,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,5,0,4,0,0,0,3,0,5,4,0,0,4,7,0,0,0,0,0,0,0,0 +"1437.52917480469",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,6,3,5,0,6,0,0,5,5,0,0,5,0,3,5,0,0,4,6,0,0,0,0,0,0,0,0 +"1437.80078125",0,0,0,0,0,0,0,0,5,4,4,4,0,0,0,3,0,0,0,0,5,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,5,0,0,0,0,4,4,0,0,4,0,4,4,0,0,4,0,0,7,0,0,0,9,0,0 +"1438.38940429688",0,0,0,0,0,0,0,0,3,0,6,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,5,4,4,4,0,0,0,0,0,4,0,0,3,0,3,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1438.70642089844",0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,3,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,4,0,0,0,0,6,7,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1438.88757324219",0,0,0,0,0,0,0,0,3,5,5,4,0,0,0,3,0,0,0,0,3,5,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,6,6,4,0,0,4,0,4,4,0,0,4,6,0,0,0,7,0,0,0,0 +"1439.20471191406",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,6,0,0,0,0,4,4,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,4,0,0,6,6,4,5,0,0,0,0,4,4,0,0,0,0,0,8,0,6,0,0,0,0 +"1439.79357910156",0,0,0,0,0,0,0,0,3,3,7,0,0,0,0,3,0,0,0,0,5,4,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,5,10,10,0,13,6,10,0,0,3,0,3,3,0,0,4,10,45,24,0,14,30,31,0,0 +"1440.79052734375",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,4,0,0,0,0,4,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,3,6,10,13,6,7,5,6,8,0,3,0,3,3,0,0,5,12,36,19,0,16,31,32,0,0 +"1441.69714355469",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,5,3,0,12,32,19,23,30,26,12,26,0,5,0,5,4,0,0,15,24,56,24,0,22,32,35,0,0 +"1442.69470214844",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,6,3,0,4,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,4,3,5,6,25,18,27,21,9,10,18,0,3,0,3,3,0,0,12,20,34,22,0,15,30,28,0,0 +"1443.60192871094",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,4,0,0,0,0,5,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,5,9,14,14,10,11,9,8,15,0,3,0,3,5,0,0,11,11,35,19,0,14,24,18,0,0 +"1444.23718261719",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,4,4,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,7,8,4,4,0,0,3,0,4,3,0,0,5,5,16,10,0,8,10,0,0,0 +"1444.69091796875",0,0,0,0,0,0,0,0,4,4,8,5,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,6,8,7,5,7,6,7,9,0,3,0,4,3,0,0,5,7,19,13,0,9,15,12,0,0 +"1445.09936523438",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,3,0,0,0,0,0,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,5,0,6,5,6,5,4,0,0,3,0,5,3,0,0,5,10,0,8,0,10,12,0,0,0 +"1445.59875488281",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,5,0,0,0,0,6,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,4,5,0,0,0,0,4,6,8,0,0,0,5,0,0,0,0,7,0,13,0,8,0,16,0,0 +"1445.87121582031",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,6,5,6,0,0,0,0,0,0,3,4,0,0,6,5,16,8,0,9,0,0,0,0 +"1446.052734375",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,4,0,0,0,0,6,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,3,4,0,0,0,0,4,4,7,0,3,0,3,6,0,0,4,5,0,7,0,8,0,9,0,0 +"1446.6884765625",0,0,0,0,0,0,0,0,5,4,7,6,0,0,0,4,0,0,0,0,0,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,4,0,6,6,6,4,5,10,0,4,0,3,5,0,0,4,7,0,7,0,8,12,11,0,0 +"1447.27893066406",0,0,0,0,0,0,0,0,4,3,0,8,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,6,6,4,6,0,0,4,0,6,4,0,0,4,5,0,0,0,7,0,10,0,0 +"1447.68786621094",0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,3,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,0,0,10,0,0,14,0,0,0 +"1447.82409667969",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,4,6,0,6,6,6,5,4,0,0,6,0,5,3,0,0,5,5,18,11,0,9,10,10,0,0 +"1448.23303222656",0,0,0,0,0,0,0,0,5,3,5,5,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,0,0,0,0,6,0,0,3,0,3,3,0,0,4,0,0,0,0,9,0,0,0,0 +"1448.55114746094",0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,4,0,9,0,0,4,0,0,0,4,0,6,4,0,0,0,0,0,8,0,6,0,0,0,0 +"1448.86926269531",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,3,4,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,0,0,0,7,0,7,0,4,7,0,4,0,3,5,0,0,0,0,0,8,0,9,0,0,0,0 +"1449.09655761719",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,5,0,0,0,0,3,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,5,0,0,0,4,0,6,4,0,0,4,0,0,0,0,0,0,9,0,0 +"1449.32385253906",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,5,5,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,5,4,0,6,0,0,5,5,0,0,0,0,5,3,0,0,4,5,0,0,0,6,0,9,0,0 +"1449.6875",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1449.77844238281",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,4,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1449.91479492188",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,5,7,0,5,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,4,5,0,0,6,6,4,4,0,0,5,0,4,3,0,0,6,5,0,8,0,7,0,9,0,0 +"1450.32409667969",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,5,0,4,0,0,0,3,0,3,3,0,0,4,5,0,0,0,7,0,0,0,0 +"1450.59692382812",0,0,0,0,0,0,0,0,5,3,5,6,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,7,0,4,0,4,4,0,0,0,0,0,8,0,0,0,0,0,0 +"1450.82434082031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,6,7,0,3,0,3,3,0,0,0,0,0,8,0,0,0,0,0,0 +"1450.96069335938",0,0,0,0,0,0,0,0,4,0,6,5,0,0,0,4,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,5,3,0,6,0,0,7,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1451.09716796875",0,0,0,0,0,0,0,0,0,3,4,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,5,3,6,5,0,0,0,0,5,4,7,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1451.32458496094",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,6,4,0,0,0,0,5,4,7,0,3,0,4,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1451.64306640625",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,4,0,0,0,4,0,0,7,0,8,0,0,0,0 +"1451.87048339844",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,5,0,0,0,0,3,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,5,4,0,6,5,0,4,0,7,0,3,0,4,4,0,0,5,0,0,8,0,7,0,0,0,0 +"1452.55310058594",0,0,0,0,0,0,0,0,4,4,5,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,4,4,7,0,3,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1452.78063964844",0,0,0,0,0,0,0,0,3,3,5,6,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,0,4,0,6,0,7,8,4,7,0,3,0,4,5,0,0,4,5,0,0,0,0,10,0,0,0 +"1453.23571777344",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,4,0,5,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,4,0,4,0,0,0,6,7,4,0,0,4,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1453.78198242188",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,3,3,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0 +"1453.91857910156",0,0,0,0,0,0,0,0,4,3,4,6,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,3,4,9,0,0,8,5,4,0,0,3,0,3,4,0,0,0,6,0,0,0,6,0,0,0,0 +"1454.32836914062",0,0,0,0,0,0,0,0,6,3,5,5,0,0,0,4,0,0,0,0,5,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,3,4,0,0,0,6,6,0,0,0,3,0,4,5,0,0,0,6,0,0,0,6,0,0,0,0 +"1454.73828125",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,5,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,5,3,4,4,0,0,0,0,4,5,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,9,0,0 +"1455.01147460938",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,4,0,0,0,0,4,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,5,6,5,4,0,0,3,0,4,4,0,0,4,5,0,0,0,6,0,0,0,0 +"1455.64916992188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,5,0,0,6,0,8,5,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1455.83142089844",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,0,0,0,5,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,4,3,4,0,0,0,0,5,6,0,0,3,0,3,0,0,0,0,7,0,0,0,9,0,0,0,0 +"1456.05920410156",0,0,0,0,0,0,0,0,4,4,6,4,0,0,0,4,0,0,0,0,4,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,5,0,4,4,0,0,3,0,3,4,0,0,0,6,0,0,0,7,0,0,0,0 +"1456.423828125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,5,0,4,5,0,0,0,0,0,4,0,0,5,0,0,0,0,6,0,0,0,0 +"1456.74279785156",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,0,0,0,0,0,7,4,0,0,0,0,0,4,0,0,0,4,0,0,8,0,6,0,0,0,0 +"1456.92504882812",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,8,5,0,0,5,7,7,6,0,0,5,0,3,3,0,0,4,5,0,8,0,0,0,9,0,0 +"1457.42651367188",0,0,0,0,0,0,0,0,6,3,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,6,3,4,4,0,0,7,0,4,4,0,0,3,0,3,0,0,0,4,5,0,7,0,0,0,9,0,0 +"1457.65441894531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1457.69995117188",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,7,0,0,7,0,3,0,3,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1457.83679199219",0,0,0,0,0,0,0,0,4,4,5,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,5,4,0,0,6,0,7,0,0,0,3,0,3,5,0,0,4,6,0,7,0,6,0,0,0,0 +"1458.20153808594",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,5,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,4,0,8,0,7,4,5,0,0,3,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1458.79431152344",0,0,0,0,0,0,0,0,5,4,6,4,0,0,0,5,0,0,0,0,4,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,6,7,5,4,0,0,3,0,3,6,0,0,0,5,0,0,0,0,0,0,0,0 +"1459.06799316406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,0,6,0,0,0,3,0,3,3,0,0,5,0,0,0,0,8,0,0,0,0 +"1459.25036621094",0,0,0,0,0,0,0,0,4,3,6,5,0,0,0,4,0,0,0,0,6,3,0,3,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,5,3,3,0,0,0,0,0,5,4,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1459.56970214844",0,0,0,0,0,0,0,0,4,5,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,3,4,0,0,5,0,5,4,0,0,3,0,3,4,0,0,0,5,0,0,0,7,0,0,0,0 +"1459.93469238281",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0 +"1459.98022460938",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,3,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,6,0,0,6,4,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1460.25402832031",0,0,0,0,0,0,0,0,5,5,6,5,0,0,0,5,0,0,0,0,5,4,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,0,0,7,4,0,0,3,0,4,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1460.89294433594",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,4,0,0,6,0,6,6,4,8,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1461.12109375",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,5,0,5,4,8,0,3,0,6,3,0,0,4,5,0,0,0,6,0,0,0,0 +"1461.80578613281",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,7,5,7,5,7,7,0,5,0,4,3,0,0,5,11,31,14,0,10,27,23,0,0 +"1462.17102050781",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,5,7,5,10,6,5,6,8,4,0,0,5,0,4,6,0,0,0,8,0,8,0,7,0,9,0,0 +"1462.71899414062",0,0,0,0,0,0,0,0,4,5,4,4,0,0,0,6,0,0,0,0,5,3,0,4,0,0,3,0,0,0,5,0,0,0,0,0,0,0,4,0,5,3,3,6,0,7,5,7,6,7,0,0,5,0,3,6,0,0,4,8,23,14,0,7,18,16,0,0 +"1463.63244628906",0,0,0,0,0,0,0,0,3,5,6,5,0,0,0,7,0,0,0,0,5,3,0,5,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,4,3,8,13,10,9,10,7,9,17,0,5,0,4,4,0,0,6,14,35,12,0,11,19,23,0,0 +"1464.13500976562",0,0,0,0,0,0,0,0,4,5,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,3,5,10,6,0,7,4,4,8,0,4,0,3,4,0,0,6,7,0,10,0,8,0,0,0,0 +"1464.72900390625",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,5,0,0,0,0,0,5,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,4,4,5,7,18,11,9,9,11,7,12,0,3,0,4,4,0,0,6,10,53,19,0,24,35,30,0,0 +"1465.73449707031",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,8,13,10,7,7,11,8,16,0,4,0,3,5,0,0,7,9,86,30,0,27,49,37,0,0 +"1466.64892578125",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,8,10,8,10,12,7,7,13,0,3,0,3,3,0,0,7,13,60,22,0,25,30,28,0,0 +"1467.56359863281",0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,5,0,0,0,0,0,0,8,0,5,0,4,0,0,0,0,0,36,17,0,0,0,15,0,0 +"1467.70080566406",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,5,0,9,5,7,5,4,8,0,7,0,3,3,0,0,5,8,35,11,0,19,15,15,0,0 +"1468.70739746094",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,5,0,0,0,0,4,4,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,6,7,10,11,0,6,6,5,10,0,3,0,5,4,0,0,4,6,42,0,0,9,14,13,0,0 +"1469.07348632812",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,5,0,0,0,4,0,0,0,0,0,0,0,3,0,3,5,5,4,10,6,6,7,5,6,10,0,3,0,4,5,0,0,6,7,0,12,0,6,0,10,0,0 +"1469.76013183594",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,9,8,5,6,6,4,10,0,3,0,4,3,0,0,4,0,24,0,0,9,17,13,0,0 +"1470.08056640625",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,11,0,11,0,10,0,0 +"1470.21789550781",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,4,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,5,3,3,4,0,0,6,6,5,5,0,0,3,0,5,3,0,0,5,5,0,0,0,6,10,0,0,0 +"1470.63000488281",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,8,0,0,0,0,3,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,3,0,3,0,0,0,0,0,20,0,0,10,0,0,0,0 +"1470.76733398438",0,0,0,0,0,0,0,0,5,4,4,5,0,0,0,4,0,0,0,0,3,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,5,3,5,5,0,7,5,8,4,6,7,0,5,0,3,4,0,0,4,5,20,7,0,10,10,0,0,0 +"1471.36267089844",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,6,0,0,0,0,4,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,5,0,5,0,0,0,3,0,3,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1471.59167480469",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,4,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,7,5,4,0,0,3,0,3,5,0,0,5,0,0,8,0,0,0,0,0,0 +"1471.95812988281",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,6,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,6,6,0,5,4,7,0,3,0,3,4,0,0,5,0,0,7,0,6,0,0,0,0 +"1472.46215820312",0,0,0,0,0,0,0,0,3,4,5,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,5,4,3,0,0,0,0,6,5,5,0,0,3,0,3,7,0,0,5,6,0,0,0,0,0,0,0,0 +"1472.87451171875",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,6,0,7,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1473.05786132812",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,4,0,0,0,0,5,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,6,6,6,4,4,7,0,3,0,4,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1473.51611328125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,0,0,0,0,0,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,4,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1473.69946289062",0,0,0,0,0,0,0,0,3,3,6,6,0,0,0,4,0,0,0,0,7,4,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,0,7,5,4,0,0,3,0,3,4,0,0,0,0,0,8,0,0,0,0,0,0 +"1474.20373535156",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,4,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,5,0,0,5,0,0,4,0,0,3,0,3,5,0,0,0,5,0,0,0,6,0,0,0,0 +"1474.57055664062",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1474.66223144531",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,4,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,5,4,0,5,0,0,0,6,4,5,9,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1474.98327636719",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,0,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,0,0,0,4,0,0,0,4,0,5,5,0,0,0,5,0,0,0,0,0,0,0,0 +"1475.25842285156",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,6,0,0,5,0,5,4,0,0,5,0,3,4,0,0,0,7,0,0,0,0,0,10,0,0 +"1475.71704101562",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,5,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,4,4,5,0,6,5,7,4,6,0,0,3,0,5,3,0,0,0,0,0,7,0,9,0,9,0,0 +"1475.99230957031",0,0,0,0,0,0,0,0,3,4,5,5,0,0,0,4,0,0,0,0,4,4,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,4,4,4,5,0,0,5,6,4,4,0,0,3,0,3,3,0,0,4,5,0,7,0,9,10,9,0,0 +"1476.45104980469",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,6,4,4,7,0,0,0,0,4,7,0,0,0,0,3,4,0,0,0,0,0,0,0,7,0,0,0,0 +"1476.68041992188",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,4,0,6,5,0,0,0,0,0,4,0,3,4,0,0,0,0,0,7,0,6,0,0,0,0 +"1476.90991210938",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,4,0,0,0,0,4,3,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,4,0,6,5,7,4,6,0,0,3,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1477.27697753906",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,4,5,0,0,4,5,0,7,0,6,0,0,0,0 +"1477.46057128906",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,5,0,6,0,0,0,0,0,0,5,0,5,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1477.73596191406",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,0,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,4,5,0,0,0,0,4,4,0,0,3,0,3,5,0,0,0,7,0,0,0,7,0,0,0,0 +"1478.14904785156",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,4,0,6,0,0,0,4,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,9,0,0 +"1478.37866210938",0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0 +"1478.47045898438",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,5,0,0,0,0,5,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,5,0,0,4,0,3,4,0,0,5,0,0,0,0,0,10,0,0,0 +"1478.74597167969",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,5,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,6,6,6,4,8,0,0,4,0,3,4,0,0,4,5,0,9,0,7,10,0,0,0 +"1479.29699707031",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,4,0,0,6,5,0,5,0,0,0,3,0,3,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1479.75622558594",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,4,4,0,0,5,9,6,6,0,0,4,0,3,3,0,0,4,5,25,20,0,20,32,27,0,0 +"1480.26159667969",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,4,3,3,4,8,0,0,7,4,5,0,0,3,0,4,3,0,0,4,5,0,11,0,0,0,9,0,0 +"1480.76696777344",0,0,0,0,0,0,0,0,6,5,5,0,0,0,0,3,0,0,0,0,6,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,7,0,3,0,3,4,0,0,6,7,4,5,0,0,0,0,4,4,0,0,4,6,26,17,0,13,27,29,0,0 +"1481.18054199219",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,5,0,4,0,0,0,3,0,3,3,0,0,4,5,0,10,0,9,10,17,0,0 +"1481.77795410156",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,4,0,0,0,0,4,4,0,0,4,0,7,4,0,0,5,5,15,13,0,17,10,17,0,0 +"1482.23767089844",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,0,0,0,4,0,0,4,0,3,4,0,0,4,0,0,9,0,7,10,9,0,0 +"1482.74328613281",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,5,0,0,0,0,5,5,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,5,4,0,0,6,0,0,0,5,0,0,4,0,6,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1483.06518554688",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,6,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,0,5,0,4,0,0,5,7,4,0,0,0,3,0,3,3,0,0,0,0,0,10,0,9,0,0,0,0 +"1483.34106445312",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,3,5,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,4,5,4,0,6,5,6,4,0,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1483.80102539062",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,5,0,4,0,0,0,0,0,3,4,0,0,4,5,0,10,0,10,20,16,0,0 +"1483.98498535156",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,4,5,5,0,0,6,6,0,4,4,0,0,3,0,0,5,0,0,4,5,17,10,0,7,14,10,0,0 +"1484.39904785156",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,4,4,4,0,6,0,0,4,4,0,0,4,0,4,3,0,0,4,5,0,11,0,0,0,0,0,0 +"1484.72106933594",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,4,6,0,7,6,6,4,6,0,0,3,0,4,3,0,0,4,5,0,10,0,10,18,0,0,0 +"1484.9970703125",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,5,0,0,0,0,3,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,7,5,6,6,5,7,0,4,0,5,3,0,0,4,6,16,8,0,10,11,17,0,0 +"1485.59533691406",0,0,0,0,0,0,0,0,3,4,6,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,0,15,10,9,11,11,8,10,13,0,4,0,3,4,0,0,5,11,35,18,0,10,18,18,0,0 +"1486.74609375",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,5,5,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,3,5,15,11,6,10,8,7,10,0,3,0,3,3,0,0,4,7,41,15,0,21,34,22,0,0 +"1487.75915527344",0,0,0,0,0,0,0,0,3,3,6,0,0,0,0,3,0,0,0,0,5,0,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,10,10,6,7,7,7,6,13,0,3,0,4,4,0,0,6,8,41,16,0,18,27,11,0,0 +"1488.68041992188",0,0,0,0,0,0,0,0,7,3,5,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,3,3,3,6,0,7,7,8,5,4,9,0,4,0,4,4,0,0,4,8,36,12,0,14,19,18,0,0 +"1489.69421386719",0,0,0,0,0,0,0,0,0,4,6,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,4,4,0,7,0,0,5,0,9,0,0,0,3,4,0,0,4,0,22,0,0,9,17,10,0,0 +"1489.92456054688",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,5,0,0,7,8,0,3,0,4,3,0,0,4,6,0,10,0,9,17,9,0,0 +"1490.24719238281",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,0,7,5,4,0,0,3,0,3,4,0,0,4,0,0,0,0,7,11,0,0,0 +"1490.70825195312",0,0,0,0,0,0,0,0,4,4,4,5,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,5,3,3,4,10,6,8,7,5,4,10,0,3,0,3,4,0,0,6,0,22,7,0,8,11,12,0,0 +"1491.26147460938",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,6,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,4,4,0,0,6,6,5,5,0,0,3,0,3,3,0,0,0,5,0,0,0,6,0,9,0,0 +"1491.81481933594",0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,4,0,0,0,0,3,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,5,0,0,6,0,5,5,7,0,3,0,0,0,0,0,4,0,17,0,0,0,0,0,0,0 +"1492.04541015625",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,4,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,4,0,0,8,0,6,0,0,0,0,3,0,5,4,0,0,0,6,0,0,0,9,10,0,0,0 +"1492.27612304688",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,5,6,0,4,0,0,3,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1492.64514160156",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,5,5,0,0,0,0,5,6,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1492.82958984375",0,0,0,0,0,0,0,0,4,4,7,4,0,0,0,3,0,0,0,0,5,4,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,6,0,5,4,0,0,4,0,0,0,0,8,0,0,0,0 +"1493.06030273438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,6,0,7,0,5,0,0,3,0,3,4,0,0,0,6,0,7,0,0,0,0,0,0 +"1493.33715820312",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,6,5,0,5,4,7,0,3,0,4,4,0,0,4,6,0,0,0,7,0,0,0,0 +"1493.79858398438",0,0,0,0,0,0,0,0,0,3,6,7,0,0,0,4,0,0,0,0,6,3,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,4,4,0,0,0,6,4,4,0,0,3,0,4,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1494.16784667969",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,5,0,6,0,9,7,6,0,0,4,0,3,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1494.67553710938",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,0,5,0,0,0,5,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1494.86022949219",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,0,3,5,0,0,0,0,0,0,5,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1495.09106445312",0,0,0,0,0,0,0,0,6,4,5,4,0,0,0,5,0,0,0,0,0,4,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,0,3,3,6,0,0,0,0,5,5,0,0,4,0,3,3,0,0,0,5,0,0,0,7,0,0,0,0 +"1495.46044921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1495.59899902344",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,3,4,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,5,5,7,4,0,0,0,6,0,4,0,0,3,0,4,4,0,0,0,0,0,0,0,7,0,0,0,0 +"1495.87609863281",0,0,0,0,0,0,0,0,5,0,5,4,0,0,0,6,0,0,0,0,4,4,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,5,0,5,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1496.24548339844",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,4,0,0,0,0,0,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,5,0,0,0,0,3,4,0,0,0,7,0,0,0,0,0,0,0,0 +"1496.43029785156",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,3,0,0,0,0,4,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,4,4,0,0,9,0,0,4,0,0,0,0,4,6,0,0,4,5,0,0,0,0,0,0,0,0 +"1496.75366210938",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,6,0,0,4,0,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1497.07702636719",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,0,4,5,0,0,3,0,5,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1497.58520507812",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1497.72387695312",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1497.86254882812",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,5,5,0,0,0,0,0,0,0,0 +"1498.00109863281",0,0,0,0,0,0,0,0,4,0,6,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,4,5,4,4,0,0,5,7,0,6,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1498.27844238281",0,0,0,0,0,0,0,0,4,3,6,5,0,0,0,4,0,0,0,0,5,4,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,5,3,0,0,6,5,0,4,5,0,0,4,0,5,6,0,0,4,0,0,0,0,6,0,0,0,0 +"1498.74072265625",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,3,0,0,0,0,4,4,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,6,0,3,3,0,0,0,0,0,0,5,5,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1499.15673828125",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,4,0,0,0,0,7,4,4,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1499.619140625",0,0,0,0,0,0,0,0,6,4,5,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,4,4,0,6,0,6,5,4,0,0,3,0,3,3,0,0,4,0,0,9,0,0,0,0,0,0 +"1500.17395019531",0,0,0,0,0,0,0,0,3,3,6,5,0,0,0,4,0,0,0,0,3,5,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,3,5,0,6,0,6,5,4,0,0,4,0,4,5,0,0,5,7,0,0,0,7,0,0,0,0 +"1500.63647460938",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,5,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,5,4,3,4,10,0,8,7,7,4,7,0,5,0,5,3,0,0,4,5,0,8,0,7,0,0,0,0 +"1501.14538574219",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,4,0,0,0,0,5,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,5,0,4,3,3,0,0,8,5,7,0,5,0,0,4,0,3,3,0,0,0,5,0,7,0,0,0,0,0,0 +"1501.74682617188",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,0,7,4,4,0,0,3,0,0,3,0,0,0,5,20,16,0,12,21,21,0,0 +"1502.11706542969",0,0,0,0,0,0,0,0,4,0,6,5,0,0,0,4,0,0,0,0,3,4,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,0,0,4,4,0,0,3,0,4,4,0,0,0,6,0,7,0,7,0,21,0,0 +"1502.76501464844",0,0,0,0,0,0,0,0,7,3,5,4,0,0,0,3,0,0,0,0,3,5,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,3,5,0,0,6,0,4,4,0,0,3,0,5,4,0,0,0,5,22,12,0,12,17,19,0,0 +"1503.13537597656",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,4,5,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,0,5,0,0,0,7,4,7,7,0,4,0,3,7,0,0,0,5,0,7,0,11,11,10,0,0 +"1503.78344726562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,5,0,0,4,0,0,3,0,4,5,0,0,0,0,0,0,0,0,16,0,0,0 +"1503.92236328125",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,0,3,3,0,0,6,0,0,5,0,0,0,3,0,0,0,0,0,4,6,0,11,0,8,0,11,0,0 +"1504.10766601562",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,4,0,0,0,0,4,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,5,7,5,4,0,0,3,0,3,6,0,0,5,6,0,7,0,6,13,9,0,0 +"1504.5244140625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,6,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,10,6,4,0,0,4,0,3,3,0,0,5,0,0,7,0,7,0,0,0,0 +"1504.75598144531",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,6,0,5,4,0,0,4,0,3,3,0,0,5,6,0,0,0,7,0,11,0,0 +"1505.03393554688",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,7,6,0,8,0,3,0,5,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1505.26550292969",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,5,0,0,0,0,5,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,5,0,0,0,0,7,6,5,7,0,3,0,3,4,0,0,4,6,0,9,0,7,0,0,0,0 +"1505.72888183594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,6,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,9,4,5,8,0,0,0,3,3,0,0,5,7,0,0,0,0,0,0,0,0 +"1505.96057128906",0,0,0,0,0,0,0,0,4,4,5,6,0,0,0,3,0,0,0,0,4,3,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,3,5,3,4,0,8,0,6,4,5,0,0,3,0,4,4,0,0,4,5,0,9,0,0,13,9,0,0 +"1506.65563964844",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,3,0,0,0,0,4,3,0,5,0,0,5,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,4,4,0,0,5,6,4,7,0,0,3,0,3,0,0,0,4,5,0,0,0,8,11,13,0,0 +"1506.98010253906",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,5,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,6,0,7,6,6,8,5,7,0,3,0,3,4,0,0,4,5,0,7,0,7,10,9,0,0 +"1507.58276367188",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,4,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5,0,7,4,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1507.72180175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,9,0,5,10,5,0,8,0,5,0,4,0,0,0,0,0,0,0,0,0,0,11,0,0 +"1507.86096191406",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,6,0,6,5,7,0,0,0,0,0,0,0,0,4,8,18,8,0,0,13,0,0,0 +"1508",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,6,8,7,5,6,5,4,8,0,3,0,5,4,0,0,0,5,0,0,0,0,10,0,0,0 +"1508.64929199219",0,0,0,0,0,0,0,0,3,4,4,6,0,0,0,3,0,0,0,0,3,3,0,3,0,0,5,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,5,0,6,5,0,4,6,7,0,4,0,5,4,0,0,0,6,0,11,0,0,0,13,0,0 +"1508.97387695312",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,8,0,0,0,0,0,0,0,6,0,0,4,7,23,0,0,0,12,13,0,0 +"1509.11303710938",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,6,0,3,0,3,5,0,8,5,7,4,6,7,0,3,0,3,3,0,0,4,7,0,9,0,10,0,0,0,0 +"1509.62341308594",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,5,9,0,0,9,7,7,5,7,0,3,0,3,3,0,0,4,6,0,12,0,6,22,16,0,0 +"1509.94812011719",0,0,0,0,0,0,0,0,4,5,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,4,4,0,8,5,0,6,4,7,0,3,0,3,5,0,0,0,6,28,8,0,7,14,9,0,0 +"1510.64416503906",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,8,0,0,0,0,0,0 +"1510.69055175781",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,5,0,4,4,0,0,3,0,0,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1510.82983398438",0,0,0,0,0,0,0,0,4,5,0,4,0,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,5,0,7,0,6,0,6,0,0,3,0,4,0,0,0,4,0,17,7,0,0,14,13,0,0 +"1511.06188964844",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,5,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,5,0,4,4,0,0,3,0,3,4,0,0,5,7,0,7,0,12,0,0,0,0 +"1511.61889648438",0,0,0,0,0,0,0,0,5,3,7,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1511.80456542969",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,4,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,6,3,4,0,0,0,0,0,4,8,0,0,0,4,4,0,0,0,5,0,0,0,6,0,0,0,0 +"1512.03674316406",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,8,4,0,0,3,0,3,0,0,0,0,6,0,0,0,0,10,0,0,0 +"1512.22253417969",0,0,0,0,0,0,0,0,5,3,4,5,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,4,4,0,0,7,0,5,5,7,0,6,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1512.64038085938",0,0,0,0,0,0,0,0,6,3,4,4,0,0,0,3,0,0,0,0,5,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,4,4,0,0,0,8,0,7,7,0,4,0,4,4,0,0,0,5,0,0,0,7,12,0,0,0 +"1513.10485839844",0,0,0,0,0,0,0,0,3,5,5,4,0,0,0,3,0,0,0,0,3,5,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,4,4,0,0,5,7,4,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1513.89453125",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,6,6,5,0,0,0,4,0,4,3,0,0,6,0,0,8,0,6,0,0,0,0 +"1514.2197265625",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,4,0,0,0,0,5,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,0,4,0,6,0,0,4,4,0,0,4,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1514.63793945312",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,0,4,0,0,0,0,4,5,0,0,0,0,4,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1514.96325683594",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,3,3,6,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1515.10266113281",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,6,4,4,0,0,0,0,4,5,0,0,0,6,0,0,0,0,0,0,0,0 +"1515.42810058594",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,5,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,5,6,0,8,0,0,4,5,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1515.75341796875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,7,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1515.939453125",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,4,0,0,0,0,4,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,5,6,5,5,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1516.49731445312",0,0,0,0,0,0,0,0,5,4,5,0,0,0,0,4,0,0,0,0,3,4,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,5,4,4,4,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0 +"1516.91589355469",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,5,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,4,0,0,6,0,0,4,0,0,3,0,4,6,0,0,0,5,0,0,0,0,0,0,0,0 +"1517.33447265625",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,6,4,5,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1517.61352539062",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1517.75305175781",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,4,4,7,0,4,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1518.0322265625",0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1518.12524414062",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,3,0,3,5,0,0,0,6,0,0,0,0,0,0,0,0 +"1518.35791015625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1518.59045410156",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,4,4,0,6,0,6,5,5,0,0,0,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1518.77661132812",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1519.05590820312",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,3,0,0,0,0,0,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,4,0,0,0,0,5,4,0,0,4,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1519.47473144531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1519.52124023438",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,7,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,4,4,0,0,0,7,6,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1519.98669433594",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,0,4,5,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1520.35913085938",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,5,0,0,0,6,4,0,0,0,0,0,3,4,0,0,5,5,0,0,0,0,0,0,0,0 +"1520.54541015625",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,5,6,0,4,0,0,3,0,3,5,0,0,4,5,0,0,0,0,0,0,0,0 +"1521.01110839844",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,6,0,0,0,7,5,4,0,0,3,0,3,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1521.47680664062",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,6,0,5,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1521.70971679688",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,4,7,0,0,5,0,0,8,0,0,4,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1522.22204589844",0,0,0,0,0,0,0,0,6,3,4,4,0,0,0,4,0,0,0,0,3,3,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,4,3,6,0,0,5,0,4,6,0,0,5,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1522.54821777344",0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,5,0,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1522.78112792969",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,6,4,0,6,5,7,5,4,0,0,4,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1523.66662597656",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,5,0,0,0,6,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1523.759765625",0,0,0,0,0,0,0,0,5,3,5,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,5,3,5,0,0,0,6,4,5,0,0,6,0,3,3,0,0,4,5,0,8,0,11,0,0,0,0 +"1523.99291992188",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,4,0,0,0,0,4,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,3,4,0,0,5,8,4,0,0,0,3,0,6,3,0,0,4,5,0,7,0,8,15,15,0,0 +"1524.73876953125",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,5,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,3,4,0,0,0,6,5,0,0,0,6,0,3,4,0,0,4,6,0,10,0,6,17,15,0,0 +"1525.15844726562",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,0,4,3,5,0,6,0,6,4,5,0,0,4,0,4,6,0,0,0,0,0,0,0,9,0,0,0,0 +"1525.71801757812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0 +"1525.85803222656",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,5,0,4,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1525.99792480469",0,0,0,0,0,0,0,0,4,0,6,4,0,0,0,3,0,0,0,0,5,5,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,10,0,0,0,5,0,0,0,0,0,4,3,0,0,4,5,0,7,0,0,0,0,0,0 +"1526.23107910156",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,4,5,0,0,0,6,4,5,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1526.69763183594",0,0,0,0,0,0,0,0,3,5,4,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,5,4,0,0,0,6,4,0,7,0,0,0,3,3,0,0,0,9,0,0,0,0,0,0,0,0 +"1526.88427734375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,4,0,6,0,0,4,4,0,0,5,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1527.25756835938",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,4,4,0,0,5,0,4,0,0,0,0,0,3,4,0,0,0,7,0,0,0,0,0,0,0,0 +"1527.44421386719",0,0,0,0,0,0,0,0,6,4,4,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,6,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1527.77087402344",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,6,5,0,0,0,0,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1528.00427246094",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,7,0,0,0,0,0,3,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,0,7,6,6,8,0,4,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1528.3310546875",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,5,0,4,4,7,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1528.84448242188",0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1528.98461914062",0,0,0,0,0,0,0,0,6,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,4,0,6,5,6,6,5,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1529.49816894531",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0,3,4,0,0,6,0,0,0,0,0,0,0,0,0 +"1529.63830566406",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,5,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,4,4,8,0,0,0,0,0,0,0,0,5,0,9,0,0,0,0,0,0 +"1529.77844238281",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,4,0,0,5,6,4,4,0,0,4,0,0,5,0,0,0,0,0,0,0,8,10,0,0,0 +"1529.96520996094",0,0,0,0,0,0,0,0,5,3,5,5,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,6,0,0,5,0,4,4,9,0,3,0,4,3,0,0,5,0,0,8,0,7,0,0,0,0 +"1530.619140625",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,5,0,0,0,0,7,0,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1530.80603027344",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,4,5,0,0,5,0,0,4,7,0,4,0,3,3,0,0,5,0,0,7,0,6,0,0,0,0 +"1531.08630371094",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,0,0,4,4,0,0,3,0,4,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1531.55358886719",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,5,0,6,0,7,4,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1531.92749023438",0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,5,0,0,5,0,0,6,0,0,3,0,3,3,0,0,4,0,0,0,0,8,0,0,0,0 +"1532.1611328125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,6,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,5,3,4,5,0,0,0,0,4,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1532.67529296875",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,5,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,6,14,10,10,9,0,7,10,0,3,0,3,3,0,0,6,8,24,0,0,6,12,9,0,0 +"1533.09606933594",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,4,0,0,0,0,3,4,0,4,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,3,3,4,0,8,6,5,0,5,4,7,0,3,0,3,4,0,0,4,6,22,0,0,0,0,0,0,0 +"1533.79736328125",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,5,15,12,0,9,7,10,11,0,3,0,3,3,0,0,8,7,19,0,0,0,11,9,0,0 +"1534.26513671875",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,7,6,0,4,4,0,0,4,0,4,4,0,0,7,6,0,0,0,0,0,0,0,0 +"1534.73278808594",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,5,0,0,0,0,4,3,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,0,10,5,4,10,0,3,0,3,5,0,0,6,6,17,7,0,0,0,0,0,0 +"1535.06030273438",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,11,8,6,0,0,4,8,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0 +"1535.20068359375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,5,5,0,5,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,6,4,4,0,0,4,0,3,4,0,0,4,7,0,0,0,0,0,0,0,0 +"1535.71533203125",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,4,5,0,0,5,0,4,0,7,0,0,0,5,3,0,0,0,0,0,7,0,0,0,0,0,0 +"1535.99609375",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,6,4,4,7,0,4,0,3,5,0,0,5,5,0,0,0,0,0,0,0,0 +"1536.37048339844",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,5,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,5,0,4,0,0,0,4,0,5,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1536.69812011719",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,6,3,4,0,0,0,0,6,6,4,0,0,3,0,4,5,0,0,0,0,0,9,0,0,0,0,0,0 +"1536.93212890625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1536.97900390625",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,6,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,5,4,0,0,3,0,4,5,0,0,6,5,0,0,0,0,0,0,0,0 +"1537.44714355469",0,0,0,0,0,0,0,0,0,5,4,5,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,5,3,3,0,0,0,5,0,5,4,0,0,3,0,3,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1537.72802734375",0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,6,3,0,4,0,0,0,6,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1537.96215820312",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,6,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,8,0,0,0,0 +"1538.1494140625",0,0,0,0,0,0,0,0,5,3,5,0,0,0,0,3,0,0,0,0,3,4,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,5,6,4,4,0,0,4,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1538.80517578125",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1538.94567871094",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,5,6,0,0,4,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1539.74206542969",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,8,0,5,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1539.97631835938",0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,3,0,0,0,0,5,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,5,6,4,4,0,0,4,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1540.30432128906",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1540.49182128906",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,6,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1540.63244628906",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,4,4,0,0,3,0,3,6,0,0,4,0,0,0,0,0,0,0,0,0 +"1540.86682128906",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,3,3,4,0,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1541.10119628906",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,0,0,8,0,7,4,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1541.28869628906",0,0,0,0,0,0,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1541.38244628906",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,0,5,0,0,3,0,4,4,0,0,0,6,0,0,0,7,0,0,0,0 +"1541.94494628906",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,6,4,4,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1542.32006835938",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,5,7,6,5,0,0,5,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1542.60144042969",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,3,0,0,0,0,5,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,5,0,0,6,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1542.7890625",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,5,6,5,4,7,0,3,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1543.25805664062",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,6,5,0,0,0,0,4,7,0,0,4,0,0,0,0,0,0,0,0,0 +"1543.49267578125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,4,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,5,0,0,4,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1543.91491699219",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,4,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,4,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1544.1025390625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,5,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,6,5,7,0,0,0,0,3,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1544.47790527344",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,6,0,4,0,0,3,0,3,4,0,0,0,5,0,0,0,6,0,0,0,0 +"1544.85339355469",0,0,0,0,0,0,0,0,5,3,4,5,0,0,0,4,0,0,0,0,5,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,4,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1545.04113769531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,4,0,0,4,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1545.13500976562",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,3,0,0,0,0,3,5,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,0,0,4,4,0,0,3,0,4,4,0,0,0,5,0,0,0,6,0,0,0,0 +"1545.65124511719",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,3,3,0,5,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,0,0,0,8,0,3,0,0,0,0,0,0,0,0,7,0,0,13,10,0,0 +"1545.83911132812",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,4,0,0,0,0,0,4,0,0,0,0,0,4,4,0,0,0,5,0,0,0,7,0,0,0,0 +"1545.97998046875",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,3,0,0,0,0,5,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,8,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,10,13,0,0 +"1546.26159667969",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,5,6,4,5,0,0,4,0,0,3,0,0,4,5,0,0,0,6,0,9,0,0 +"1546.68420410156",0,0,0,0,0,0,0,0,3,0,4,7,0,0,0,5,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,8,0,4,0,0,3,0,4,3,0,0,0,0,0,8,0,0,0,0,0,0 +"1546.91906738281",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,6,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,10,9,0,0 +"1547.20080566406",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,5,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,5,6,5,4,0,0,3,0,3,3,0,0,6,0,0,7,0,0,0,0,0,0 +"1547.52966308594",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,0,0,0,0,0,0,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,5,0,0,0,0,5,4,0,0,3,0,3,4,0,0,4,5,0,0,0,6,0,0,0,0 +"1547.8115234375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1548.14025878906",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,0,8,5,4,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1548.65710449219",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1548.75109863281",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,5,3,4,0,0,0,0,0,6,5,0,0,3,0,3,5,0,0,0,5,0,0,0,0,0,0,0,0 +"1549.03308105469",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,5,0,0,5,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1549.17407226562",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,5,0,0,0,0,0,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,5,0,0,0,6,0,4,0,0,4,0,0,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1549.55004882812",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1549.69104003906",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,4,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,7,6,5,4,0,0,3,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1550.11413574219",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,4,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,6,0,7,4,0,0,4,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1550.63134765625",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,3,6,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1550.86645507812",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,5,0,0,0,0,4,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,5,0,6,0,0,5,5,0,0,3,0,3,3,0,0,4,5,0,0,0,6,0,0,0,0 +"1551.38366699219",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,4,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1551.61889648438",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,0,3,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,5,0,4,0,7,0,5,0,5,5,0,0,0,6,0,0,0,0,0,0,0,0 +"1552.08923339844",0,0,0,0,0,0,0,0,3,4,0,5,0,0,0,3,0,0,0,0,5,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,7,7,4,8,0,3,0,4,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1552.55969238281",0,0,0,0,0,0,0,0,5,5,4,4,0,0,0,3,0,0,0,0,3,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,4,6,4,5,0,0,0,6,4,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1552.98315429688",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,5,4,4,0,6,5,6,5,4,8,0,4,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1553.5478515625",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,5,3,3,4,0,0,0,6,5,0,9,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1553.83032226562",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,4,0,0,0,5,0,5,5,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0 +"1554.0185546875",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1554.15979003906",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,3,4,5,4,0,6,6,0,4,4,0,0,3,0,4,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1554.77172851562",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,8,22,22,11,19,12,8,31,0,3,0,5,3,0,0,10,16,49,19,0,17,30,20,0,0 +"1555.80773925781",0,0,0,0,0,0,0,0,3,5,4,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,8,21,23,10,20,10,8,23,0,3,0,3,3,0,0,6,14,42,14,0,16,25,21,0,0 +"1556.70275878906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,10,10,0,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,12,0,0 +"1556.74987792969",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,0,11,11,10,10,5,6,17,0,0,0,0,0,0,0,7,8,23,9,0,0,0,0,0,0 +"1556.89123535156",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,7,10,11,5,10,5,8,17,0,3,0,0,3,0,0,7,6,21,9,0,11,16,12,0,0 +"1557.31518554688",0,0,0,0,0,0,0,0,4,4,4,5,0,0,0,5,0,0,0,0,6,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,0,0,6,0,7,4,5,8,0,0,0,5,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1557.73937988281",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,6,5,8,0,0,0,0,3,0,3,0,0,0,0,8,0,7,0,0,0,0,0,0 +"1557.88073730469",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,5,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,0,6,0,0,0,8,8,6,0,0,3,0,0,3,0,0,4,8,0,7,0,9,0,0,0,0 +"1558.11633300781",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,4,0,7,0,0,5,4,11,0,3,0,3,5,0,0,0,8,0,0,0,0,11,0,0,0 +"1558.30493164062",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,5,8,5,4,0,0,3,0,4,5,0,0,4,5,0,7,0,0,0,0,0,0 +"1558.82348632812",0,0,0,0,0,0,0,0,4,3,6,5,0,0,0,4,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,6,0,0,7,0,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1559.01208496094",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,5,4,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,6,0,3,4,3,4,0,0,5,6,8,0,10,0,4,0,5,4,0,0,4,5,0,0,0,6,11,0,0,0 +"1559.71923828125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,6,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,5,6,5,5,8,0,3,0,0,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1560.04943847656",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,5,0,0,0,0,5,4,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,4,4,0,0,5,8,6,4,7,0,3,0,4,4,0,0,4,0,0,0,0,6,0,0,0,0 +"1560.37951660156",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,6,3,4,0,0,0,0,4,5,0,0,4,0,0,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1560.70971679688",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,7,6,0,4,7,0,4,0,0,4,0,0,4,0,0,0,0,6,0,0,0,0 +"1560.99279785156",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,3,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,5,0,6,5,0,5,4,0,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1561.794921875",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,3,0,0,7,0,9,0,0,0,0,3,0,3,3,0,0,4,6,0,0,0,6,0,0,0,0 +"1562.07800292969",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,0,5,6,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1562.40844726562",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,4,4,3,4,0,0,0,6,4,6,0,0,3,0,6,0,0,0,6,5,0,0,0,0,0,0,0,0 +"1562.73876953125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,6,0,9,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1562.88037109375",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,4,0,3,3,3,4,0,6,6,6,0,5,8,0,3,0,3,0,0,0,4,5,0,0,0,0,0,0,0,0 +"1563.21081542969",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,4,0,0,0,6,6,5,4,7,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1563.68298339844",0,0,0,0,0,0,0,0,5,4,0,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,5,0,6,0,0,5,4,0,0,4,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1563.96630859375",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,5,0,6,8,10,4,6,7,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1564.34411621094",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,5,0,0,0,0,4,4,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1564.62744140625",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,3,0,0,0,0,4,3,0,6,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,5,0,0,5,0,4,0,0,0,6,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1565.05261230469",0,0,0,0,0,0,0,0,5,0,4,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1565.1943359375",0,0,0,0,0,0,0,0,4,4,4,5,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,0,0,0,0,6,0,0,0,0 +"1565.572265625",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,5,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,5,6,5,6,0,0,4,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1565.9501953125",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,6,0,5,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1566.04467773438",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,5,0,4,4,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1566.32824707031",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,3,4,0,0,0,0,5,4,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1566.56457519531",0,0,0,0,0,0,0,0,4,0,5,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,0,0,6,5,0,5,4,0,0,4,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1566.89538574219",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,6,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,5,0,0,0,0,5,4,7,0,5,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1567.74621582031",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,5,0,4,6,0,0,3,0,4,4,0,0,6,7,0,12,0,12,15,14,0,0 +"1568.59741210938",0,0,0,0,0,0,0,0,5,3,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,3,4,0,0,0,6,0,4,0,0,3,0,3,3,0,0,0,0,20,11,0,0,0,0,0,0 +"1568.83386230469",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,5,0,5,4,0,0,4,0,3,3,0,0,4,0,15,11,0,9,12,17,0,0 +"1569.30676269531",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,4,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,0,6,6,5,0,0,4,0,4,3,0,0,4,0,0,9,0,7,0,0,0,0 +"1569.73254394531",0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,0,3,0,0,4,0,0,5,0,0,9,0,0,0,0,0,0 +"1569.92175292969",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,5,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,6,0,4,0,0,0,0,0,4,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1570.06372070312",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,6,4,4,0,0,3,0,0,0,0,0,0,0,0,8,0,0,10,14,0,0 +"1570.2529296875",0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,0,4,4,0,0,5,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1570.7734375",0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,7,4,7,0,0,3,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1570.91552734375",0,0,0,0,0,0,0,0,4,0,4,5,0,0,0,4,0,0,0,0,5,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,7,0,5,0,0,3,0,3,6,0,0,4,0,0,0,0,0,0,0,0,0 +"1571.15209960938",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1571.24682617188",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,4,0,0,6,6,5,5,7,0,3,0,5,4,0,0,4,0,0,0,0,6,0,0,0,0 +"1571.67272949219",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1571.90942382812",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,0,0,5,4,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1572.05151367188",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,0,0,0,7,0,5,4,0,0,3,0,4,4,0,0,5,0,0,0,0,6,0,0,0,0 +"1572.43029785156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1572.47766113281",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,5,5,0,0,0,6,5,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1572.76171875",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,5,4,0,0,6,6,5,5,0,0,0,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1573.140625",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,4,4,0,6,5,6,5,4,8,0,3,0,3,3,0,0,0,0,0,8,0,0,0,0,0,0 +"1573.8984375",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,6,4,4,4,0,0,5,6,6,4,0,0,3,0,3,4,0,0,6,0,0,8,0,6,13,10,0,0 +"1574.56164550781",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,4,0,8,0,0,5,6,5,4,8,0,0,0,0,3,0,0,4,5,0,8,0,0,0,0,0,0 +"1574.84594726562",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,3,4,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,5,7,0,6,0,6,4,4,0,0,4,0,4,4,0,0,4,5,0,7,0,6,0,13,0,0 +"1575.41467285156",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,6,0,0,0,0,3,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,4,0,6,6,0,5,5,7,0,3,0,3,5,0,0,4,0,0,7,0,6,0,10,0,0 +"1575.9833984375",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,8,0,5,7,5,5,0,0,3,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1576.17297363281",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,5,7,4,4,0,0,4,0,5,4,0,0,4,0,0,0,0,6,0,10,0,0 +"1576.74194335938",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,7,12,10,7,15,11,9,11,0,4,0,3,3,0,0,5,6,17,13,0,7,15,0,0,0 +"1577.21606445312",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,4,0,0,0,0,3,3,0,5,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,4,9,7,6,7,4,4,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1577.73779296875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,5,11,8,11,11,7,6,13,0,3,0,3,4,0,0,0,7,19,0,0,8,12,10,0,0 +"1578.1171875",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,7,7,8,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1578.30700683594",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,4,9,7,5,6,4,4,7,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1578.6865234375",0,0,0,0,0,0,0,0,3,4,6,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,9,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1578.82885742188",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,3,0,3,0,0,0,7,6,8,5,8,0,5,0,3,5,0,0,4,5,15,7,0,6,10,9,0,0 +"1579.255859375",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,5,0,0,0,0,5,3,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,5,0,0,0,0,4,4,0,0,3,0,3,3,0,0,4,0,0,8,0,0,0,0,0,0 +"1579.82531738281",0,0,0,0,0,0,0,0,3,3,6,5,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,6,0,0,5,10,4,0,9,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1580.06262207031",0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,3,0,0,0,0,3,5,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,9,6,6,6,4,6,7,0,3,0,3,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1580.58471679688",0,0,0,0,0,0,0,0,3,5,5,4,0,0,0,6,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,4,3,5,0,0,0,8,6,0,7,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1580.86962890625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,8,4,5,7,0,3,0,0,4,0,0,0,7,0,0,0,0,0,0,0,0 +"1581.10693359375",0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,0,4,0,0,0,0,5,0,0,0,3,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1581.34436035156",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,3,4,4,0,0,5,9,5,5,8,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1581.72424316406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1581.77172851562",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,4,3,3,5,0,0,5,7,6,6,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1582.24670410156",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,5,0,0,0,0,0,4,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1582.43664550781",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,4,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,7,4,0,8,0,0,0,3,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1582.62670898438",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,0,3,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,0,9,7,4,8,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1582.91174316406",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,6,0,4,0,0,0,0,0,3,3,0,0,0,5,0,0,0,6,0,0,0,0 +"1583.19677734375",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,5,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,8,5,6,8,0,3,0,3,5,0,0,5,6,0,0,0,0,0,0,0,0 +"1583.43432617188",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,5,8,7,0,0,0,0,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1583.62438964844",0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,3,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,4,0,0,0,0,6,5,6,0,0,4,0,4,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1584.05200195312",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,6,6,5,4,7,0,3,0,3,5,0,0,0,5,0,0,0,0,0,0,0,0 +"1584.62243652344",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,0,0,0,7,0,3,0,3,6,0,0,5,0,0,0,0,0,0,0,0,0 +"1584.90759277344",0,0,0,0,0,0,0,0,4,4,5,4,0,0,0,5,0,0,0,0,5,5,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,5,10,4,5,9,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1585.33544921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1585.47802734375",0,0,0,0,0,0,0,0,6,4,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,6,0,0,0,0,0,4,10,0,4,0,4,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1585.8583984375",0,0,0,0,0,0,0,0,3,4,4,6,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,0,5,0,0,0,6,5,4,0,0,4,0,4,3,0,0,5,5,0,0,0,6,0,0,0,0 +"1586.333984375",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,5,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1586.47668457031",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,4,3,4,0,0,0,6,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1586.66687011719",0,0,0,0,0,0,0,0,3,3,4,7,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,6,0,0,5,8,0,0,0,0,3,4,0,0,0,5,0,0,0,6,0,0,0,0 +"1587.19018554688",0,0,0,0,0,0,0,0,3,3,6,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,0,5,4,9,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1587.57067871094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1587.61828613281",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,5,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,4,8,0,5,0,3,3,0,0,0,0,0,0,0,0,0,9,0,0 +"1587.85620117188",0,0,0,0,0,0,0,0,4,4,6,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,5,6,7,4,7,0,3,0,3,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1588.14172363281",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,5,4,4,6,0,0,5,7,5,4,10,0,3,0,3,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1588.66516113281",0,0,0,0,0,0,0,0,4,0,4,5,0,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,6,4,4,8,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1588.95068359375",0,0,0,0,0,0,0,0,3,5,0,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,8,0,4,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1589.09350585938",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,7,8,5,5,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1589.33154296875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,6,8,5,5,7,0,3,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1589.85522460938",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,4,0,0,6,0,10,0,5,0,0,3,0,3,5,0,0,4,0,0,9,0,9,0,13,0,0 +"1590.09326171875",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,5,6,0,5,0,0,3,0,3,3,0,0,4,6,0,9,0,0,0,11,0,0 +"1590.90283203125",0,0,0,0,0,0,0,0,5,3,5,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,5,0,0,6,0,6,0,0,7,0,4,0,3,4,0,0,0,5,0,8,0,6,10,0,0,0 +"1591.18859863281",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,4,0,6,5,7,4,5,7,0,4,0,4,3,0,0,6,0,0,0,0,6,0,10,0,0 +"1591.66491699219",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,3,0,0,0,0,6,5,0,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1591.85546875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,5,0,0,0,6,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0 +"1592.09362792969",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,5,4,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,4,0,0,0,0,4,4,0,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1592.33190917969",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,5,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,5,4,0,0,5,6,6,4,7,0,3,0,4,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1592.80834960938",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0 +"1592.9990234375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,4,4,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,6,0,0,0,5,8,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1593.28503417969",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,0,0,5,0,0,5,0,4,6,7,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1593.66625976562",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,3,0,0,0,0,6,6,5,7,0,3,0,3,4,0,0,4,6,0,0,0,0,10,0,0,0 +"1594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1594.04760742188",0,0,0,0,0,0,0,0,6,3,4,0,0,0,0,3,0,0,0,0,4,4,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,0,5,5,0,0,3,0,3,3,0,0,5,6,0,0,0,0,0,0,0,0 +"1594.810546875",0,0,0,0,0,0,0,0,4,5,0,4,0,0,0,4,0,0,0,0,3,5,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,5,3,4,0,0,0,0,4,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1595.0966796875",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,3,0,0,0,0,8,5,4,7,0,4,0,5,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1595.76428222656",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,7,8,7,0,7,0,0,0,3,4,0,0,4,5,0,7,0,8,12,0,0,0 +"1596.33679199219",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,5,7,5,4,7,0,3,0,3,4,0,0,5,6,0,0,0,6,0,0,0,0 +"1596.76611328125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5,4,0,8,6,0,5,5,8,0,3,0,3,3,0,0,4,0,0,0,0,0,0,10,0,0 +"1596.95703125",0,0,0,0,0,0,0,0,3,5,4,7,0,0,0,5,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,6,0,0,0,7,4,4,0,0,3,0,3,3,0,0,4,0,0,7,0,6,0,9,0,0 +"1597.24328613281",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,6,6,4,4,0,0,3,0,3,4,0,0,4,0,0,7,0,0,0,0,0,0 +"1597.43420410156",0,0,0,0,0,0,0,0,5,3,5,5,0,0,0,5,0,0,0,0,3,3,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,0,3,3,5,0,0,5,7,5,4,0,0,4,0,0,4,0,0,4,0,0,0,0,0,10,0,0,0 +"1597.76831054688",0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,3,0,0,0,0,6,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,6,6,6,0,5,7,0,3,0,3,4,0,0,4,7,0,0,0,0,10,0,0,0 +"1598.10241699219",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,4,4,0,0,6,6,4,6,7,0,3,0,4,3,0,0,4,5,0,0,0,0,10,0,0,0 +"1598.72302246094",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,4,0,5,4,3,5,8,8,5,11,8,7,11,0,3,0,4,6,0,0,5,6,17,0,0,6,11,9,0,0 +"1599.20043945312",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,5,3,5,0,0,6,9,5,5,7,0,3,0,4,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1599.67797851562",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,4,8,6,0,10,6,5,14,0,5,0,4,5,0,0,4,7,0,8,0,6,0,0,0,0 +"1599.91687011719",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,4,0,0,0,0,4,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,5,5,3,4,8,6,5,7,6,7,8,0,4,0,4,4,0,0,4,5,0,8,0,6,11,0,0,0 +"1600.68103027344",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,6,8,8,0,0,0,3,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1600.82434082031",0,0,0,0,0,0,0,0,3,4,4,7,0,0,0,4,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,3,4,5,4,0,6,6,8,6,7,9,0,3,0,4,4,0,0,0,8,0,0,0,0,11,0,0,0 +"1601.25439453125",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,3,0,0,0,0,3,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,4,8,0,5,7,4,5,0,0,4,0,4,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1601.68444824219",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,6,7,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1601.82775878906",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,3,4,0,0,6,6,6,4,7,0,4,0,4,4,0,0,0,7,0,7,0,7,0,0,0,0 +"1602.01892089844",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,5,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,8,0,5,0,7,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,10,9,0,0 +"1602.16235351562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,8,5,6,0,4,0,0,0,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1602.353515625",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,4,0,6,5,0,5,4,0,0,4,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1602.83154296875",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,5,3,0,0,6,7,9,4,6,0,0,4,0,4,4,0,0,0,7,0,0,0,0,0,0,0,0 +"1603.11840820312",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,4,0,0,0,7,5,4,7,0,4,0,4,3,0,0,6,5,0,0,0,6,10,0,0,0 +"1603.54870605469",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,5,7,0,6,0,0,3,0,3,5,0,0,4,6,0,0,0,0,0,0,0,0 +"1603.97900390625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,6,0,0,0,3,0,3,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1604.31384277344",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1604.50512695312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1604.55297851562",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,6,4,5,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1604.88781738281",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,0,0,6,0,8,0,0,0,0,4,0,0,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1605.126953125",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,5,0,0,7,0,5,5,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1605.3662109375",0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,6,0,4,0,0,4,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1605.50964355469",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,7,4,0,0,3,0,5,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1605.79675292969",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,6,5,4,0,0,4,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1606.17956542969",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,7,0,3,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1606.37097167969",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,3,0,0,0,0,5,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,5,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1606.8017578125",0,0,0,0,0,0,0,0,4,3,4,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,5,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1607.041015625",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,5,0,7,5,7,4,5,7,0,3,0,3,3,0,0,4,8,0,0,0,0,0,0,0,0 +"1607.51977539062",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,4,0,0,0,0,4,4,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,5,0,4,0,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1608.19006347656",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,5,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,5,0,7,5,0,6,5,7,0,4,0,4,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1608.76477050781",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,5,4,0,0,0,0,5,0,5,6,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1609.05212402344",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,4,5,5,0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1609.38745117188",0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,5,0,0,5,9,5,5,0,0,3,0,4,3,0,0,0,5,0,0,0,0,10,0,0,0 +"1609.86645507812",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,7,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1610.01013183594",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1610.20178222656",0,0,0,0,0,0,0,0,3,3,5,7,0,0,0,4,0,0,0,0,4,3,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,6,0,5,4,0,0,3,0,3,3,0,0,6,6,0,0,0,0,0,0,0,0 +"1610.63305664062",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,8,0,0,0,0,3,0,4,4,0,0,5,5,0,0,0,0,0,0,0,0 +"1610.87268066406",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,4,0,6,0,6,4,4,7,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1611.44787597656",0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,5,0,0,4,0,3,0,0,0,7,0,0,0,0,0,0,0,0,0 +"1611.63952636719",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,5,0,0,0,0,5,4,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,5,8,4,4,0,0,3,0,0,4,0,0,5,5,0,0,0,0,0,0,0,0 +"1612.11901855469",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,3,0,0,0,0,0,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1612.31079101562",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1612.40661621094",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,4,5,0,0,5,0,4,5,0,0,0,5,0,0,0,0,0,0,0,0 +"1612.64636230469",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,6,0,0,0,0,4,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,5,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1612.83813476562",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,6,4,4,0,0,5,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1613.22180175781",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,8,4,4,0,0,5,0,5,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1613.60559082031",0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,5,0,4,0,0,0,4,0,3,3,0,0,0,7,0,0,0,0,0,0,0,0 +"1613.84533691406",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,8,0,8,4,0,0,0,0,0,6,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1613.9892578125",0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,7,0,4,0,5,5,0,0,0,5,0,0,0,0,0,0,0,0 +"1614.18115234375",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,5,4,0,0,0,6,6,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1614.42102050781",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,5,5,0,0,0,6,0,5,7,0,4,0,3,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1614.90087890625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,6,4,0,0,0,3,0,3,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1615.14074707031",0,0,0,0,0,0,0,0,3,3,7,0,0,0,0,3,0,0,0,0,3,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,5,0,0,0,0,0,4,4,7,0,3,0,3,3,0,0,5,5,0,0,0,6,0,0,0,0 +"1615.57263183594",0,0,0,0,0,0,0,0,3,3,6,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,4,0,0,0,0,4,5,0,0,4,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1615.81262207031",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,7,4,5,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1616.19665527344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1616.388671875",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,3,3,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1616.62866210938",0,0,0,0,0,0,0,0,3,4,0,5,0,0,0,3,0,0,0,0,3,5,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,3,0,3,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1616.82080078125",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,3,6,0,0,0,6,4,6,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1617.2529296875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,5,0,5,5,7,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1617.82922363281",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,10,6,0,0,0,3,0,3,5,0,0,4,0,21,0,0,0,11,0,0,0 +"1617.97326660156",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,5,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,5,0,6,8,8,6,4,0,0,0,0,4,0,0,0,5,5,0,0,0,8,0,0,0,0 +"1618.16540527344",0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,4,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,6,0,0,6,8,6,7,9,0,3,0,4,4,0,0,5,8,17,0,0,8,11,10,0,0 +"1618.837890625",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,8,0,7,8,12,5,5,10,0,4,0,3,3,0,0,5,7,16,0,0,7,13,10,0,0 +"1619.22229003906",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,5,5,0,0,5,8,8,4,7,0,3,0,5,4,0,0,4,8,0,0,0,7,13,11,0,0 +"1619.89501953125",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,0,0,0,6,5,9,6,4,0,0,4,0,4,5,0,0,5,6,0,0,0,7,0,0,0,0 +"1620.18334960938",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,3,5,0,0,5,6,7,4,10,0,3,0,3,5,0,0,0,6,0,0,0,6,11,0,0,0 +"1620.76013183594",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,6,0,6,6,9,7,5,11,0,0,0,3,6,0,0,0,6,16,0,0,6,15,11,0,0 +"1621.14477539062",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,6,0,0,0,0,3,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,5,0,0,6,6,7,5,9,0,3,0,4,3,0,0,0,6,0,0,0,6,0,0,0,0 +"1621.7216796875",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,6,0,0,6,9,7,4,0,0,4,0,3,0,0,0,5,5,16,0,0,0,0,9,0,0 +"1622.01025390625",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,4,6,0,6,6,6,4,6,11,0,4,0,3,4,0,0,4,5,0,0,0,6,11,9,0,0 +"1622.77978515625",0,0,0,0,0,0,0,0,3,3,5,6,0,0,0,5,0,0,0,0,5,3,0,5,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,6,8,0,8,7,5,4,11,0,3,0,3,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1623.11645507812",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,4,8,6,0,9,5,7,9,0,3,0,3,7,0,0,5,0,0,0,0,6,0,0,0,0 +"1623.74194335938",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,4,5,0,7,0,7,6,5,0,0,5,0,3,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1624.36743164062",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,3,0,0,0,0,6,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,5,3,5,0,0,0,0,4,6,7,0,5,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1624.80065917969",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,6,4,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1625.04125976562",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1625.18566894531",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1625.57080078125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0 +"1625.71520996094",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1625.85974121094",0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,4,3,0,0,6,5,0,5,4,8,0,3,0,4,3,0,0,4,5,0,0,0,6,0,0,0,0 +"1626.4375",0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,0,7,5,4,0,0,4,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1626.77453613281",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,3,0,3,5,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1627.01538085938",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,7,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1627.2080078125",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,5,0,0,0,0,4,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,3,5,0,0,5,0,6,5,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1627.6416015625",0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,6,6,4,7,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1627.88244628906",0,0,0,0,0,0,0,0,6,4,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,0,3,0,0,6,0,6,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1628.31604003906",0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,3,0,0,0,0,4,4,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,5,3,5,0,0,0,6,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1628.84619140625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1629.03894042969",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,8,0,6,4,0,0,0,5,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1629.27990722656",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,6,4,4,7,0,3,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1629.90649414062",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,5,6,4,5,0,0,3,0,3,6,0,0,0,5,0,0,0,0,0,0,0,0 +"1630.29211425781",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,5,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1630.38854980469",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,5,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,4,5,0,0,0,0,4,6,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1630.72607421875",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,8,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1631.16015625",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,6,0,0,0,0,5,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,5,3,4,0,0,0,6,5,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1631.44946289062",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,4,3,4,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1631.73889160156",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,6,0,0,0,0,0,3,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,5,0,6,0,8,4,4,0,0,3,0,3,4,0,0,6,5,0,0,0,0,0,0,0,0 +"1632.17297363281",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,4,0,0,0,0,0,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,3,4,0,6,0,0,6,5,0,0,4,0,3,3,0,0,0,7,0,0,0,0,0,0,0,0 +"1632.751953125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1632.89660644531",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1633.04138183594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,6,6,4,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1633.28271484375",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,5,0,3,3,4,0,0,0,0,0,4,5,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1633.91003417969",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,4,0,0,0,0,0,0,0,0,0,5,0,6,5,0,0,4,6,0,0,0,0,0,0,0,0 +"1634.19970703125",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,5,0,5,4,0,0,3,0,3,3,0,0,0,0,0,7,0,0,0,0,0,0 +"1634.34448242188",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1634.63415527344",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1634.77893066406",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,4,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1635.02038574219",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,4,4,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1635.3583984375",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,6,0,0,0,6,4,5,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1635.69641113281",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,4,0,0,5,0,4,4,0,0,3,0,0,4,0,0,6,5,0,0,0,0,0,0,0,0 +"1636.56579589844",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1636.71069335938",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,5,5,4,0,0,0,6,0,4,0,0,0,0,3,5,0,0,5,5,0,0,0,0,0,0,0,0 +"1637.00048828125",0,0,0,0,0,0,0,0,3,0,5,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1637.43530273438",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,4,5,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1637.72521972656",0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,4,0,0,0,0,0,5,4,0,0,0,0,3,3,0,0,0,7,0,0,0,0,0,0,0,0 +"1637.96691894531",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,4,0,7,0,0,4,4,0,0,3,0,5,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1638.40185546875",0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,0,6,4,0,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1638.69189453125",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,5,0,0,6,0,0,4,4,8,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1639.27197265625",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,3,4,0,0,0,0,4,5,0,0,4,0,4,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1639.94885253906",0,0,0,0,0,0,0,0,5,3,0,6,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,4,4,4,9,67,34,27,33,11,24,44,0,0,0,4,5,0,0,24,23,82,22,0,17,44,29,0,0 +"1640.43237304688",0,0,0,0,0,0,0,0,3,4,7,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,6,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,8,0,6,0,6,7,0,0,3,0,3,3,0,0,17,5,0,7,0,6,12,10,0,0 +"1640.916015625",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,4,14,62,28,27,25,14,14,37,0,3,0,3,3,0,0,23,22,70,20,0,9,41,23,0,0 +"1641.88354492188",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,4,0,0,0,0,4,3,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,3,3,3,6,42,20,15,14,11,9,24,0,3,0,3,4,0,0,18,13,45,15,0,8,27,17,0,0 +"1642.89978027344",0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,14,10,7,14,6,6,12,0,3,0,3,3,0,0,9,9,21,8,0,0,15,10,0,0 +"1643.23864746094",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,4,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,5,14,8,7,0,4,0,10,0,3,0,0,0,0,0,0,0,0,8,0,6,0,10,0,0 +"1643.3837890625",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,5,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,5,0,0,0,9,4,5,7,0,3,0,0,6,0,0,4,5,0,0,0,0,0,0,0,0 +"1643.86791992188",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,9,0,6,6,10,0,0,0,0,5,0,0,6,7,0,7,0,0,0,0,0,0 +"1644.01318359375",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,5,3,5,10,0,5,11,4,6,10,0,0,0,3,4,0,0,6,5,0,0,0,6,14,12,0,0 +"1644.30358886719",0,0,0,0,0,0,0,0,5,4,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,6,0,0,6,7,4,4,8,0,3,0,4,4,0,0,4,5,16,7,0,6,0,0,0,0 +"1644.884765625",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,8,6,8,0,6,5,13,0,3,0,3,4,0,0,5,0,20,8,0,6,11,0,0,0 +"1645.22375488281",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,5,0,0,0,0,5,4,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,7,5,11,4,5,9,0,3,0,3,3,0,0,5,5,0,7,0,8,0,9,0,0 +"1645.75646972656",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,6,8,8,0,8,0,4,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1645.90185546875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,4,0,0,0,6,6,4,6,8,0,3,0,0,3,0,0,5,5,0,0,0,6,10,0,0,0 +"1646.19250488281",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,5,0,6,6,0,5,0,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1646.43481445312",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,6,3,0,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,5,8,7,4,0,0,4,0,3,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1646.91931152344",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,4,8,0,6,7,4,5,0,0,3,0,0,4,0,0,5,7,0,0,0,0,0,0,0,0 +"1647.25854492188",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,5,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,5,3,4,0,0,0,6,6,5,0,0,4,0,3,3,0,0,5,7,0,0,0,0,0,0,0,0 +"1647.7431640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,4,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1647.88854980469",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,6,6,0,4,0,0,3,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1648.47033691406",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,0,4,0,0,0,7,5,4,0,0,4,0,4,4,0,0,4,5,0,7,0,0,0,0,0,0 +"1648.955078125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,8,0,4,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1649.34301757812",0,0,0,0,0,0,0,0,3,3,5,6,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,5,0,6,0,0,5,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1649.58557128906",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1649.73095703125",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,7,0,0,5,4,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1650.16748046875",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,5,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1650.94372558594",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,3,4,0,0,0,6,0,5,4,0,0,4,0,4,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1651.33190917969",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,0,5,0,0,5,0,0,4,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1652.01123046875",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,4,3,4,0,0,0,0,4,4,0,0,0,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1652.35095214844",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1652.59362792969",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,4,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,4,4,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1653.03051757812",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1653.22473144531",0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,0,0,0,3,5,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,4,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1653.4189453125",0,0,0,0,0,0,0,0,3,5,5,0,0,0,0,3,0,0,0,0,4,4,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,4,0,7,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1653.953125",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,5,0,0,4,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1654.19592285156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,8,0,4,4,0,0,4,0,0,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1654.73010253906",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,5,6,5,4,0,0,3,0,3,3,0,0,4,0,0,0,0,6,0,0,0,0 +"1655.02160644531",0,0,0,0,0,0,0,0,3,3,7,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,6,5,6,0,0,3,0,3,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1655.31311035156",0,0,0,0,0,0,0,0,3,4,5,5,0,0,0,5,0,0,0,0,5,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,5,0,4,4,0,0,3,0,5,4,0,0,5,5,0,7,0,0,0,0,0,0 +"1655.89611816406",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,4,4,0,0,0,0,0,5,0,0,0,0,3,5,0,0,0,5,0,0,0,0,0,0,0,0 +"1656.13903808594",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,8,6,0,8,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1656.33337402344",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,6,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,4,0,0,5,0,0,4,0,0,0,0,3,4,0,0,6,0,0,0,0,0,0,0,0,0 +"1656.57641601562",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,5,0,0,0,0,4,3,0,0,5,6,0,0,0,0,0,0,0,0 +"1656.86804199219",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,4,0,4,3,0,0,7,0,0,0,0,0,0,0,0,0 +"1657.15966796875",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,5,0,0,0,0,3,4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,6,0,4,0,0,3,0,4,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1657.88879394531",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,6,0,5,0,0,0,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1658.08337402344",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,4,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1658.47229003906",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,4,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,6,0,6,5,7,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1658.861328125",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,5,0,4,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1659.00720214844",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1659.05590820312",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,3,5,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1659.25048828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1659.29907226562",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,6,4,0,0,0,4,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1659.44494628906",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,4,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,5,0,0,0,0,4,4,0,0,5,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1659.83410644531",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,4,5,0,0,3,0,3,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1660.17468261719",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,6,0,0,5,0,0,3,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1660.32067871094",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,4,0,8,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1660.61254882812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1660.66125488281",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1660.80725097656",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1661.00183105469",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,0,0,4,4,0,0,0,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1661.92663574219",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,4,9,20,13,13,20,10,10,21,0,4,0,4,3,0,0,9,11,49,14,0,11,24,15,0,0 +"1662.46215820312",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,0,6,8,7,0,7,7,6,8,0,3,0,3,3,0,0,5,6,0,0,0,7,0,0,0,0 +"1662.94897460938",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,0,0,0,0,0,5,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,5,7,20,15,12,17,8,9,17,0,3,0,0,3,0,0,10,7,31,12,0,10,26,14,0,0 +"1663.92297363281",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,5,13,7,7,10,7,8,13,0,3,0,4,3,0,0,7,9,0,10,0,0,0,0,0,0 +"1664.21533203125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,6,7,0,0,0,3,0,0,0,0,0,5,0,27,0,0,0,16,0,0,0 +"1664.36145019531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0 +"1664.41015625",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,0,4,10,6,7,6,4,4,9,0,3,0,4,5,0,0,6,5,0,0,0,0,0,0,0,0 +"1664.99475097656",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,8,6,0,6,6,9,0,0,4,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1665.23840332031",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,5,3,5,7,10,7,7,0,0,4,7,0,3,0,5,3,0,0,5,7,0,0,0,0,0,0,0,0 +"1665.57946777344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1665.62817382812",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,5,0,0,0,0,0,0,0,0,3,0,5,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1665.87182617188",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,6,4,0,0,5,0,5,5,7,0,3,0,3,4,0,0,6,5,0,0,0,0,0,0,0,0 +"1666.35925292969",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,7,4,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1666.45678710938",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,4,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1666.70043945312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1666.74926757812",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,6,4,0,0,0,4,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1666.94421386719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,6,5,0,0,5,7,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1667.23669433594",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,4,0,0,0,4,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1667.48046875",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,5,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1667.77307128906",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,6,0,4,0,0,3,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1667.96813964844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1668.01696777344",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,4,5,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1668.65087890625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1668.89477539062",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,4,0,0,3,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1669.04113769531",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,5,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1669.28503417969",0,0,0,0,0,0,0,0,4,6,0,7,0,0,0,0,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,0,0,4,4,0,0,4,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1669.87060546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,6,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1669.96813964844",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,5,4,7,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1670.45617675781",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,5,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1670.7001953125",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1670.7490234375",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,4,5,0,0,5,6,5,0,7,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1671.43237304688",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,3,6,0,0,0,0,0,0,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1671.67639160156",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,3,5,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,0,0,5,5,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1672.16467285156",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,6,0,4,6,7,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1672.70178222656",0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,4,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1672.84826660156",0,0,0,0,0,0,0,0,5,3,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,6,4,0,0,0,0,4,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1673.14135742188",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,7,5,0,4,6,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1673.38562011719",0,0,0,0,0,0,0,0,4,4,6,0,0,0,0,4,0,0,0,0,3,5,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,3,4,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1673.8740234375",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,5,0,6,0,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1674.60693359375",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,5,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1674.90014648438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,4,0,0,0,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1675.14440917969",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1675.33996582031",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,5,0,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1675.73095703125",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,4,0,0,0,0,4,3,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,0,5,0,0,6,0,0,5,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1676.02429199219",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,4,4,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1676.2197265625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,6,0,0,4,6,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1676.85534667969",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1677.05090332031",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,0,6,0,4,0,0,5,0,3,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1677.44213867188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1677.49108886719",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1677.63781738281",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1678.02905273438",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,5,4,0,0,4,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1678.51818847656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,6,0,0,5,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1678.6650390625",0,0,0,0,0,0,0,0,4,5,5,0,0,0,0,3,0,0,0,0,5,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,5,0,0,5,0,4,0,0,0,3,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1679.05639648438",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,5,3,4,0,0,0,6,4,5,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1679.44787597656",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,5,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1679.79040527344",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1680.03515625",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,5,0,0,0,0,4,5,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1680.42663574219",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,5,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,5,4,3,0,0,0,5,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1680.72033691406",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1680.8671875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1681.01403808594",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,0,0,0,0,0,4,4,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1681.30786132812",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,5,4,0,0,4,0,4,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1681.99340820312",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,4,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1682.28723144531",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,5,5,4,4,0,0,0,6,5,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1682.72802734375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,4,0,0,0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1683.16882324219",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,0,4,4,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1683.95275878906",0,0,0,0,0,0,0,0,6,3,0,4,0,0,0,5,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,5,0,4,5,0,0,4,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1684.49182128906",0,0,0,0,0,0,0,0,3,0,7,4,0,0,0,3,0,0,0,0,3,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,5,0,0,3,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1684.78588867188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1685.03088378906",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,4,0,0,0,6,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,5,0,5,4,0,0,3,0,3,5,0,0,4,5,0,0,0,0,0,0,0,0 +"1685.47204589844",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1685.8642578125",0,0,0,0,0,0,0,0,3,4,5,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,5,4,0,0,0,0,4,4,0,0,3,0,4,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1686.20751953125",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,4,0,6,5,0,4,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1686.94299316406",0,0,0,0,0,0,0,0,4,4,5,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,7,0,4,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1687.18823242188",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1687.62976074219",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,4,0,0,0,0,5,0,0,0,3,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1687.97314453125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,5,0,4,0,0,0,3,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1688.65991210938",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,7,0,0,0,0,0,0,3,0,0,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1688.85620117188",0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1689.00341796875",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1689.39611816406",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,3,0,0,0,0,0,4,4,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1689.73962402344",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1689.98510742188",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1690.23046875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,5,0,0,0,0,5,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,5,4,0,0,0,0,4,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1690.62329101562",0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,4,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1690.96691894531",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,6,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1691.31066894531",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1691.65441894531",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,5,5,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1692.09643554688",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,4,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1692.39111328125",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,5,0,0,0,0,5,5,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1692.88244628906",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,6,0,0,0,3,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1693.07897949219",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,6,0,0,0,0,8,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1693.32458496094",0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,3,6,0,0,0,0,4,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1694.01257324219",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,0,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,4,4,10,0,0,0,6,0,7,0,0,0,5,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1694.30749511719",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,3,0,3,3,0,4,0,6,0,6,6,4,7,0,3,0,5,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1694.89733886719",0,0,0,0,0,0,0,0,3,0,5,5,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,7,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1695.04479980469",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,7,5,6,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1695.38891601562",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,0,0,6,0,0,4,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1695.92980957031",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1696.07727050781",0,0,0,0,0,0,0,0,5,4,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,5,0,5,5,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1696.42150878906",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1696.56909179688",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,6,6,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1696.81506347656",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,3,0,0,0,0,3,4,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,4,4,3,4,0,0,5,0,7,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1697.30688476562",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1697.60205078125",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1697.74963378906",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,3,0,0,0,0,0,6,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1698.14331054688",0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,3,0,0,0,0,0,4,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1698.34008789062",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1698.48779296875",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,0,4,0,0,0,6,5,0,0,0,4,0,6,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1698.97985839844",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,0,5,6,0,0,4,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1699.27526855469",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,5,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,4,0,0,5,0,4,0,0,0,0,0,4,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1699.76745605469",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1699.91516113281",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,0,0,6,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1700.40747070312",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,0,0,4,0,8,0,3,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1700.80139160156",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1700.99841308594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1701.04760742188",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,6,0,4,7,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1701.49096679688",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1701.73718261719",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1701.93420410156",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,0,4,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1702.32836914062",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1702.72253417969",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,5,0,0,4,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1702.91955566406",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1703.16589355469",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,4,3,4,5,0,0,0,0,0,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1703.75732421875",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1704.10241699219",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,4,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1704.44738769531",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1704.7431640625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,5,0,0,0,6,0,0,0,0,4,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1704.98974609375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,7,4,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1705.48278808594",0,0,0,0,0,0,0,0,4,4,4,5,0,0,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,4,4,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1705.97595214844",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,6,0,4,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1706.37048339844",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,4,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1706.86376953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,0,4,3,7,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,5,5,0,7,0,0,0,0,0,0 +"1707.15979003906",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,5,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1707.35717773438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,0,0,5,5,7,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1707.80126953125",0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,3,6,0,7,5,0,5,4,0,0,3,0,3,4,0,0,4,0,0,0,0,0,10,0,0,0 +"1708.19604492188",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,5,0,4,0,0,0,3,0,4,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1708.64025878906",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1708.73889160156",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,5,0,0,0,7,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1709.08447265625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,4,0,0,6,5,0,6,0,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1709.43005371094",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,5,5,0,0,0,0,0,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1709.77563476562",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1709.97314453125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1710.12121582031",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,4,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,5,4,0,0,0,0,5,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1710.7138671875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1711.01013183594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,0,5,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1711.4052734375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1711.75109863281",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1712.04748535156",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,4,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1712.4921875",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,4,0,0,0,0,4,4,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1712.7392578125",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,4,0,0,0,0,3,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1713.08520507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1713.13464355469",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,5,5,5,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1713.28295898438",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,3,4,0,0,0,0,0,5,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1713.82666015625",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,4,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1714.12329101562",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,6,0,0,0,0,3,3,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,4,0,4,3,3,4,0,0,0,0,4,5,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1714.91430664062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,5,6,9,9,9,8,8,7,14,0,3,0,4,5,0,0,7,5,0,7,0,6,0,9,0,0 +"1715.45825195312",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,4,0,6,0,0,7,5,7,0,4,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1715.95288085938",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,6,16,7,0,14,10,6,10,0,4,0,3,4,0,0,8,0,0,10,0,6,0,10,0,0 +"1716.29907226562",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,4,4,0,0,9,0,7,5,0,0,3,0,3,4,0,0,7,10,0,7,0,6,0,0,0,0 +"1716.89282226562",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,4,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,6,0,6,0,0,0,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1717.14013671875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,4,4,8,8,8,6,6,0,8,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1717.43701171875",0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,4,0,0,0,7,0,8,0,0,3,0,3,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1717.73400878906",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1717.88244628906",0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,6,5,0,4,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1718.17944335938",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,0,4,0,0,0,7,5,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1718.52587890625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,5,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1718.87243652344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1719.07043457031",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,6,4,0,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1719.4169921875",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,5,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,7,0,0,6,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1719.81311035156",0,0,0,0,0,0,0,0,5,4,4,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1720.06066894531",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1720.20935058594",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1720.80358886719",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1721.00183105469",0,0,0,0,0,0,0,0,3,6,0,4,0,0,0,0,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,4,5,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1721.29895019531",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,4,3,4,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1721.64575195312",0,0,0,0,0,0,0,0,4,4,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,4,4,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1721.99267578125",0,0,0,0,0,0,0,0,4,5,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,5,0,0,0,0,6,0,7,0,3,0,4,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1722.58728027344",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,0,0,4,0,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1723.08288574219",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1723.28112792969",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1723.4794921875",0,0,0,0,0,0,0,0,5,3,0,5,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,5,0,0,5,0,0,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1724.22302246094",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,5,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1724.71899414062",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,4,0,0,5,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1725.06604003906",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,4,0,0,0,0,0,4,5,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1725.76049804688",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,7,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1725.90930175781",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,5,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,3,3,0,0,0,0,0,4,6,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1726.20690917969",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,3,0,0,0,0,5,4,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,7,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1726.65344238281",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1727.05041503906",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,5,4,0,0,0,6,4,0,0,0,3,0,3,3,0,0,0,5,0,0,0,6,0,0,0,0 +"1727.4970703125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,4,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,4,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1727.94372558594",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,5,0,0,0,0,4,4,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1728.48974609375",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1728.83728027344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1729.03588867188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,6,5,5,8,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1729.2841796875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1729.43310546875",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,0,0,4,0,0,5,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1729.88000488281",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1730.12841796875",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,8,0,0,0,4,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1730.37670898438",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1730.77404785156",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,0,4,3,0,0,0,0,0,4,5,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1731.17150878906",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,5,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,4,3,4,0,0,0,0,0,4,5,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1731.61865234375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1731.86706542969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1731.91687011719",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,5,0,4,4,0,0,4,0,5,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1732.31433105469",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3,4,4,0,0,0,0,4,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1732.76171875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1732.91076660156",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,4,4,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,5,4,4,4,0,0,0,0,4,4,0,0,3,0,3,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1733.50732421875",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1733.85534667969",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1734.05419921875",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1734.25317382812",0,0,0,0,0,0,0,0,5,3,0,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1734.55151367188",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,6,5,4,0,0,3,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1734.89965820312",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,5,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1735.14831542969",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,5,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1735.34729003906",0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1735.39697265625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,6,4,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1735.74523925781",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1735.89453125",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1736.19299316406",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1736.49157714844",0,0,0,0,0,0,0,0,5,4,4,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1737.03894042969",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,6,7,4,5,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1737.93481445312",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,4,0,0,6,5,0,0,0,0,0,4,0,4,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1738.28332519531",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,5,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,5,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1738.58203125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1738.73132324219",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1739.03015136719",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1739.17944335938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1739.32885742188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1739.47827148438",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,6,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1740.07592773438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1740.37475585938",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1740.57409667969",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,7,0,0,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1740.87292480469",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1740.97265625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,5,0,4,0,0,0,3,0,4,3,0,0,4,0,0,0,0,6,0,0,0,0 +"1741.67016601562",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,6,0,0,0,0 +"1741.86950683594",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,0,0,4,0,0,0,3,0,3,3,0,0,4,0,0,0,0,6,0,0,0,0 +"1742.16857910156",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1742.36791992188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1742.76672363281",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1743.01586914062",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1743.16552734375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1743.36486816406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1743.41479492188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1743.76379394531",0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1744.11279296875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1744.61157226562",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1744.76110839844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1744.81103515625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,5,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1745.06042480469",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1745.26000976562",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,4,0,6,5,0,4,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1745.85864257812",0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1746.15795898438",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1746.3076171875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1746.35754394531",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,0,4,0,0,0,0,4,4,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1746.95642089844",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1747.85485839844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1747.95471191406",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,5,0,0,0,6,4,0,0,0,3,0,4,5,0,0,4,6,0,0,0,0,0,0,0,0 +"1748.9033203125",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1749.05310058594",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1749.2529296875",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,5,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1749.85229492188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1750.25183105469",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1750.6015625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1750.85131835938",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,9,0,0 +"1751.25109863281",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,3,4,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1751.95068359375",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,4,0,0,3,0,4,4,0,0,5,0,0,0,0,6,0,0,0,0 +"1752.55053710938",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1752.90051269531",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,7,0,0,4,5,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1753.35046386719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1753.75048828125",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,6,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1754.00048828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1754.25048828125",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,5,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1754.80065917969",0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,4,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1754.95080566406",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,6,5,0,0,0,3,0,3,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1755.30090332031",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,5,0,0,6,0,0,5,4,0,0,4,0,0,3,0,0,4,6,0,0,0,0,0,0,0,0 +"1755.80126953125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1756.10144042969",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,4,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1756.25158691406",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0,4,4,0,0,0,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1756.5517578125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,4,0,0,0,0,0,0,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1756.90209960938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1757.10229492188",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,5,0,0,5,0,5,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1757.45275878906",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,4,5,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1757.85314941406",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1757.95336914062",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,5,7,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1758.30383300781",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,5,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,0,4,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1758.80456542969",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,5,0,0,5,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1759.25524902344",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,5,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1759.55578613281",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1759.90637207031",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1760.056640625",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,4,0,0,0,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1760.40734863281",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1760.65783691406",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,5,0,4,4,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1761.10876464844",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1761.359375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1761.55981445312",0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,3,0,4,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1761.81042480469",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1762.11108398438",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1762.16125488281",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,4,5,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1762.36181640625",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1762.81298828125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1763.06359863281",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1763.66528320312",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1763.916015625",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,6,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1764.31726074219",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1764.4677734375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,3,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,4,0,0,4,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1765.01953125",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1765.17004394531",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3,0,4,0,0,0,0,5,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1765.47106933594",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,4,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,3,5,0,0,0,0,4,0,0,0,3,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1765.822265625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1765.97277832031",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,4,0,0,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1766.2236328125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1766.42443847656",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,6,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1766.77575683594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,4,5,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1766.97644042969",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1767.22741699219",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1767.37805175781",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1767.52868652344",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,0,4,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1767.82983398438",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1768.08093261719",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,4,0,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1768.43237304688",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1768.73364257812",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1768.88427734375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1769.18566894531",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1769.38659667969",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,5,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1769.68798828125",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,7,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1769.88891601562",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,6,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1770.24047851562",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,5,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,0,0,5,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1770.74291992188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1770.94396972656",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1771.29565429688",0,0,0,0,0,0,0,0,5,0,4,5,0,0,0,3,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,0,6,4,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1771.79833984375",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,5,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1772.04956054688",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,0,4,0,0,0,0,6,0,4,0,0,3,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1772.40148925781",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,4,0,0,4,0,3,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1772.90417480469",0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,11,7,5,8,6,7,8,0,3,0,3,3,0,0,4,6,36,8,0,12,26,12,0,0 +"1773.90991210938",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,8,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1774.01049804688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,9,9,5,7,7,4,8,0,3,0,3,3,0,0,4,6,34,11,0,14,22,17,0,0 +"1774.91589355469",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,6,20,0,0,7,0,11,0,0 +"1775.06677246094",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,18,0,0,6,0,0,0,0 +"1775.26806640625",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,3,0,0,6,0,7,4,4,8,0,3,0,3,3,0,0,5,7,16,9,0,6,13,9,0,0 +"1775.92211914062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1775.97241210938",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1776.17370605469",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,5,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1776.77770996094",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,4,0,0,3,0,6,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1777.28100585938",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1777.5830078125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1777.73413085938",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1777.88513183594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1777.93542480469",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,5,0,0,0,4,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1778.23754882812",0,0,0,0,0,0,0,0,4,4,4,5,0,0,0,5,0,0,0,0,5,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1778.74108886719",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1778.99291992188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1779.24475097656",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,4,0,3,0,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1779.59741210938",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1779.84924316406",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,4,0,0,0,6,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1780.35302734375",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,4,0,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1780.9072265625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1781.05847167969",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,4,0,0,4,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1781.71362304688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,6,0,4,4,8,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1782.11682128906",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1782.26806640625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,5,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1782.77221679688",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,5,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1783.12512207031",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1783.2763671875",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,5,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1783.67980957031",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,6,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1783.93200683594",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,6,0,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1784.33544921875",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1784.89038085938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1785.09216308594",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1785.24353027344",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1785.34436035156",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,5,0,0,0,0,0,4,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1785.79846191406",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1786.10119628906",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,4,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1786.60595703125",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,0,4,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1786.85827636719",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,5,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,4,4,0,0,0,0,0,7,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1787.1611328125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1787.41357421875",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,4,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1787.71643066406",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,5,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1788.37280273438",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,6,4,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1788.97888183594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1789.13037109375",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,4,4,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,3,4,3,0,0,7,5,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1789.73645019531",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,5,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1789.93859863281",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,5,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1790.19116210938",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1790.49426269531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1790.69641113281",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1790.94909667969",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1791.25231933594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1791.40393066406",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,5,6,5,0,0,0,5,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1792.06091308594",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1792.41479492188",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,0,6,5,4,0,0,5,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1792.76867675781",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1793.021484375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,4,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1793.37548828125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,7,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1793.62829589844",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,4,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1794.943359375",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,4,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1795.14575195312",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,7,0,7,0,6,0,11,0,0 +"1795.39868164062",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,4,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,6,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1796.005859375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,6,4,0,0,0,0,0,3,0,0,5,0,0,7,0,6,10,0,0,0 +"1796.41064453125",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,5,0,0,3,0,0,4,0,0,4,0,0,0,0,6,10,0,0,0 +"1796.8662109375",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1797.01806640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1797.169921875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,5,6,0,0,0,0,0,0,3,4,0,0,5,6,0,0,0,0,0,0,0,0 +"1797.52429199219",0,0,0,0,0,0,0,0,3,0,4,7,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,5,6,4,4,0,0,0,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1798.18249511719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,5,0,0,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1798.43566894531",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,7,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1798.89135742188",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,4,4,0,0,0,8,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1799.60046386719",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,6,0,0,3,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1799.955078125",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,5,0,0,0,0,0,3,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1800.15771484375",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1800.3603515625",0,0,0,0,0,0,0,0,3,3,4,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,6,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1800.71508789062",0,0,0,0,0,0,0,0,5,3,5,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,0,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1801.06982421875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1801.32312011719",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1801.57653808594",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1801.779296875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,4,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1802.08337402344",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,0,0,4,4,0,0,3,0,4,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1802.59033203125",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1802.94519042969",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,5,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1803.35083007812",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,6,4,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1803.90869140625",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,5,0,0,0,0,4,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1804.16223144531",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,5,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,0,0,0,5,0,0,3,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1804.41589355469",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1804.61877441406",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1804.87243652344",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,3,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1805.2275390625",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1805.73486328125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,4,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1805.98864746094",0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1806.24230957031",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,5,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1806.49609375",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,5,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,5,0,0,0,0,4,5,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1807.35888671875",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,5,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1807.76501464844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1807.91735839844",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,4,4,0,0,0,0,0,4,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1808.12048339844",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1808.37438964844",0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,5,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1808.67907714844",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1808.83142089844",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,5,5,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1809.08532714844",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,5,0,4,5,0,0,4,0,3,4,0,0,0,6,0,0,0,0,0,0,0,0 +"1809.49157714844",0,0,0,0,0,0,0,0,4,0,4,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,5,0,0,4,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1809.74560546875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,5,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1809.99963378906",0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,5,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1810.86328125",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,7,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1811.21899414062",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,4,0,0,5,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1811.77807617188",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,5,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1812.0322265625",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,3,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1812.38793945312",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1812.59130859375",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1812.74389648438",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,4,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1813.25231933594",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,4,0,7,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1813.50646972656",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,5,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,3,4,0,0,0,0,0,4,0,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1813.96423339844",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,4,0,0,0,0,0,6,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1814.32019042969",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1814.52368164062",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1814.67626953125",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1815.03234863281",0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1815.23583984375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1815.28674316406",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,6,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1815.64282226562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1815.89721679688",0,0,0,0,0,0,0,0,0,3,5,5,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1816.10070800781",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,4,0,7,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1816.60961914062",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,5,3,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1816.9150390625",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1817.06774902344",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,7,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1817.322265625",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,3,4,0,0,0,6,0,4,0,0,3,0,4,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1817.88220214844",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1818.08581542969",0,0,0,0,0,0,0,0,3,3,7,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,7,5,0,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1818.34045410156",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1818.64599609375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1818.90051269531",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1819.10424804688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1819.40991210938",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1819.71545410156",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1819.97021484375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1820.17395019531",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,4,4,0,0,0,0,5,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1820.42858886719",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1820.78527832031",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1820.98913574219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1821.0400390625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1821.19287109375",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,3,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1821.65161132812",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,4,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1821.95739746094",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1822.21215820312",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,6,0,0,0,4,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1822.36511230469",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,5,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1822.92590332031",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1823.02783203125",0,0,0,0,0,0,0,0,5,3,6,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,4,0,4,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1823.384765625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1823.84362792969",0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1824.14965820312",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,4,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1824.5576171875",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1824.91467285156",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,5,0,0,0,0,0,4,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1825.11877441406",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1825.37377929688",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,5,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1825.52685546875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,5,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1825.78198242188",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1825.93505859375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1826.037109375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1826.2412109375",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1826.6494140625",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1826.80249023438",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1827.26184082031",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1827.4150390625",0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1827.87438964844",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1828.07861328125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1828.23181152344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1828.53820800781",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,5,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1828.94665527344",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1829.20202636719",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1829.45739746094",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,6,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,5,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1829.86596679688",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1830.0703125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1830.12133789062",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,5,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1830.53002929688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,5,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1830.8876953125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,7,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1831.24536132812",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,5,0,0,0,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1831.90966796875",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1831.96081542969",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1832.21630859375",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1832.36962890625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,5,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1832.72741699219",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,5,4,3,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1833.23864746094",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1833.39208984375",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1833.80114746094",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1834.00561523438",0,0,0,0,0,0,0,0,3,3,5,5,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1834.3125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1834.7216796875",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1834.97741699219",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,8,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1835.28430175781",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,4,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,5,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1835.74475097656",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1835.94934082031",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1836.00048828125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1836.46105957031",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1836.71691894531",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1837.22863769531",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,0,0,0,0,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1837.74047851562",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,3,0,4,3,0,0,6,0,0,0,0,0,0,0,0,0 +"1838.25244140625",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,3,0,0,0,0,5,0,0,5,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,4,0,0,0,0,4,5,0,0,5,0,0,0,0,0,0,0,0,0 +"1838.81555175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1838.86682128906",0,0,0,0,0,0,0,0,3,4,6,0,0,0,0,5,0,0,0,0,4,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,6,0,4,0,0,3,0,0,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1839.48132324219",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,5,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,7,4,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1839.89099121094",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1840.09594726562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3,0,4,0,0,0,0,4,4,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1840.50573730469",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1840.81311035156",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,5,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1840.966796875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,5,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1841.27416992188",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1841.53039550781",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1841.7353515625",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1841.94030761719",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1842.45288085938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1842.50402832031",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1842.70910644531",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1842.96545410156",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1843.17041015625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,5,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1843.4267578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1843.58056640625",0,0,0,0,0,0,0,0,5,3,5,5,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1843.88818359375",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1844.09326171875",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1844.24719238281",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1844.40100097656",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1844.86254882812",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1845.06774902344",0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1845.22155761719",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1845.47802734375",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,5,0,5,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1845.99108886719",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1846.04235839844",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1846.298828125",0,0,0,0,0,0,0,0,0,3,4,5,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,7,4,0,0,0,3,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1846.70935058594",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1846.81201171875",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,5,3,0,0,0,5,0,0,0,0,0,4,0,5,3,0,0,4,5,0,0,0,0,0,0,0,0 +"1847.27380371094",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1847.58178710938",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,0,4,0,0,0,0,6,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1848.09509277344",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1848.6083984375",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1848.91650390625",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1849.27587890625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,6,0,0,4,4,0,0,5,0,5,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1849.8408203125",0,0,0,0,0,0,0,0,4,0,4,5,0,0,0,3,0,0,0,0,4,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1850.09753417969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1850.14892578125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,5,0,4,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1850.86804199219",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,4,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1851.27905273438",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,4,0,0,0,0,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1851.48449707031",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,5,0,0,0,4,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1851.94702148438",0,0,0,0,0,0,0,0,5,3,0,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,4,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1852.40954589844",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1852.82067871094",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1853.07763671875",0,0,0,0,0,0,0,0,4,5,5,5,0,0,0,4,0,0,0,0,3,3,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1854.1572265625",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,5,0,0,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1854.67138671875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1854.82568359375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,4,0,0,0,0,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1855.08288574219",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,5,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1855.70007324219",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,7,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1856.42028808594",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1856.78039550781",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1856.98620605469",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1857.24353027344",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1857.8095703125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1858.06689453125",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1858.47875976562",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1858.78759765625",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1858.94201660156",0,0,0,0,0,0,0,0,4,3,5,4,0,0,0,3,0,0,0,0,3,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,4,4,0,0,0,6,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1859.40539550781",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,4,0,0,0,0,0,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1859.71435546875",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1860.02331542969",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1860.33239746094",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1860.48681640625",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,4,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1860.74438476562",0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1860.95043945312",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,4,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1861.36254882812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,0,4,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1861.67163085938",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1862.13537597656",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1862.34143066406",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1862.7021484375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1863.01147460938",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1863.57836914062",0,0,0,0,0,0,0,0,6,3,5,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1863.99084472656",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1864.19702148438",0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1864.40319824219",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1864.50634765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1864.66101074219",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1864.91882324219",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,4,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1865.33142089844",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1865.6923828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1865.79553222656",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1866.05346679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1866.10510253906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1866.31140136719",0,0,0,0,0,0,0,0,5,4,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,5,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1866.72412109375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1866.98205566406",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1867.34326171875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1867.70446777344",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1868.01403808594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1868.06567382812",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,5,0,0,0,0,5,0,0,0,3,0,3,0,0,0,6,7,0,0,0,0,0,0,0,0 +"1868.37536621094",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,4,0,0,0,7,4,4,9,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1868.89147949219",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,5,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1869.04638671875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,3,5,0,0,5,0,4,4,7,0,3,0,3,4,0,0,6,0,0,0,0,0,0,0,0,0 +"1869.66589355469",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,6,3,0,0,0,0,6,4,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1870.02734375",0,0,0,0,0,0,0,0,6,3,0,4,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1870.38879394531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1870.54370117188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,5,0,0,0,0,3,4,0,0,6,5,0,0,0,0,0,0,0,0 +"1870.69860839844",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1870.95690917969",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1871.11181640625",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,5,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1871.42175292969",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,5,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1871.78332519531",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,5,3,3,4,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1872.19665527344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1872.4033203125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,4,0,0,0,0,4,5,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1872.60998535156",0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1872.92004394531",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,6,0,4,0,0,0,3,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1873.48852539062",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,7,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1873.74694824219",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1874.470703125",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1874.67749023438",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1874.98767089844",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1875.65991210938",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1875.71154785156",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,4,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1876.5908203125",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1876.90124511719",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,6,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1877.05639648438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1877.47033691406",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1877.57373046875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,6,0,0,0,0,0,0,0,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1878.03942871094",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,4,0,0,0,0,5,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1878.34997558594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0 +"1878.71228027344",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,6,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1878.86755371094",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1879.12634277344",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1879.38513183594",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1879.64392089844",0,0,0,0,0,0,0,0,5,3,4,5,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,4,0,0,0,4,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0 +"1880.36877441406",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1880.57592773438",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,5,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1880.78308105469",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1881.09375",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1881.30090332031",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1881.50805664062",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1881.87072753906",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1882.02612304688",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1882.388671875",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,4,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1882.75134277344",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1883.16589355469",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1883.58044433594",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1884.25415039062",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1884.720703125",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,4,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1885.18725585938",0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1885.44653320312",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1885.861328125",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1886.06872558594",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,5,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1886.89855957031",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1887.41723632812",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1887.83227539062",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1888.29931640625",0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1888.45495605469",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1888.92199707031",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1889.28527832031",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,4,0,5,0,0,0,0,0,4,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1890.06384277344",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,3,4,3,5,0,7,7,12,6,6,12,0,0,0,3,4,0,0,6,9,15,0,0,0,10,0,0,0 +"1890.94653320312",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,5,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,6,4,9,7,7,9,5,5,13,0,3,0,3,4,0,0,6,9,0,0,0,0,10,0,0,0 +"1891.98510742188",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,4,0,6,7,10,5,0,8,0,3,0,3,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1892.34875488281",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,5,0,0,5,8,5,7,8,0,3,0,3,3,0,0,5,5,0,0,0,0,0,0,0,0 +"1892.8681640625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,4,0,0,0,3,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1893.1279296875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,4,0,0,3,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0 +"1893.28381347656",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,5,3,0,0,0,0,6,5,0,7,0,3,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1893.85534667969",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1893.95922851562",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1894.21911621094",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,6,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1894.47900390625",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,5,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1894.8427734375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1894.99877929688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,3,0,0,0,5,0,0,4,0,0,0,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1895.5185546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1895.83044433594",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,5,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1896.24645996094",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,6,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1896.81848144531",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1897.13049316406",0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1897.39050292969",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1897.70263671875",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,4,0,0,0,3,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1897.96276855469",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,0,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1898.43090820312",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1898.63903808594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1898.95129394531",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1899.05529785156",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1899.26342773438",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1899.67980957031",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1899.88793945312",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1900.04406738281",0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,4,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1900.20031738281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1900.40844726562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1900.72082519531",0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1901.13732910156",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1901.44970703125",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1901.60595703125",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,5,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1901.86633300781",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1902.1787109375",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,5,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1902.6474609375",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1903.16833496094",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,4,0,0,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1903.58508300781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1903.63720703125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,5,4,3,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1904.05395507812",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 +"1904.21032714844",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1904.47082519531",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1904.88781738281",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1905.04406738281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1905.14831542969",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1905.40893554688",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1905.7216796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1905.93017578125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1906.34729003906",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1906.3994140625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1906.55578613281",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1906.86865234375",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1906.92077636719",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,5,0,0,3,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1907.39013671875",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1907.59875488281",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1907.91162109375",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1908.17248535156",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,5,0,0,6,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1908.64184570312",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1908.90270996094",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1909.05920410156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1909.2158203125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1909.37231445312",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1909.78979492188",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1910.10290527344",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,5,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1910.416015625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1910.72912597656",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1910.83349609375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1910.93786621094",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0 +"1911.25109863281",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1911.61657714844",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,6,0,0,3,0,0,5,0,0,0,3,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,6,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1912.08642578125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,6,4,5,0,0,0,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1912.45190429688",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,4,0,0,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1912.97424316406",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,4,4,0,0,0,0,5,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1913.54870605469",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1913.96655273438",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1914.17553710938",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,6,0,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1914.48901367188",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,4,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1914.85473632812",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1915.01147460938",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1915.16833496094",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1915.48181152344",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,5,6,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1915.69091796875",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,5,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,6,0,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1916.00451660156",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1916.21350097656",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1916.37036132812",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,6,0,0,0,0,4,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1916.8408203125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,6,4,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1917.99108886719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1918.14807128906",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1918.30493164062",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,5,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1918.72338867188",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1919.08947753906",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1919.50793457031",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1919.92651367188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,4,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1920.18811035156",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1920.71142578125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1921.13012695312",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1921.18237304688",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,5,0,0,0,0,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1921.60119628906",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1921.86291503906",0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1922.22937011719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1922.49108886719",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,5,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1922.96228027344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,6,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1923.48596191406",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,6,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1923.90490722656",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1924.32397460938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1924.5859375",0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1924.84777832031",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1925.00500488281",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,4,0,0,0,0,0,0,0,0,0 +"1925.3193359375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1925.52893066406",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1925.94812011719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1926.15771484375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1926.57702636719",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1926.78662109375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,5,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1927.10107421875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1927.15356445312",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1927.57287597656",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1928.20202636719",0,0,0,0,0,0,0,0,3,3,0,6,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1928.41186523438",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,4,4,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1928.8837890625",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,3,0,0,0,0,0,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1929.14599609375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1929.30334472656",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1929.72290039062",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1929.98522949219",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1930.29992675781",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1930.56225585938",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1931.03454589844",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1931.24438476562",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1931.66418457031",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1932.08410644531",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1932.45153808594",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1932.87145996094",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1933.34399414062",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1933.92150878906",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1934.23657226562",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1934.60424804688",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1935.12951660156",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1935.287109375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,4,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1935.81237792969",0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1936.18017578125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1936.6005859375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1937.17858886719",0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,3,0,0,0,0,0,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1937.44140625",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,4,0,0,0,0,0,0,4,7,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1937.86181640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1938.22985839844",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0 +"1938.38757324219",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1938.44006347656",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,5,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1938.75561523438",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1939.28137207031",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1939.333984375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,5,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1939.91247558594",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,5,0,0,0,0,5,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1940.75402832031",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1940.96435546875",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1941.1748046875",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1941.49047851562",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1941.85888671875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1942.17456054688",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1942.54296875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1942.85876464844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1943.0166015625",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1943.64831542969",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1943.85888671875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1944.17468261719",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1944.59594726562",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,5,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1945.01721191406",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1945.28051757812",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1946.12329101562",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,4,5,0,0,3,0,4,3,0,0,0,0,0,7,0,0,10,0,0,0 +"1946.65002441406",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1947.07153320312",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0 +"1947.22961425781",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1947.4404296875",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,8,0,0,0,0,0,0 +"1947.96740722656",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0 +"1948.38903808594",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,0,0,0,4,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1948.86340332031",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1949.337890625",0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1949.75964355469",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1949.91784667969",0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1950.28698730469",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1951.02526855469",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1951.341796875",0,0,0,0,0,0,0,0,3,4,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1951.7109375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1952.02746582031",0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1952.18579101562",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1952.44958496094",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0 +"1952.55505371094",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1952.66064453125",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1952.92443847656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1953.08276367188",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1953.3466796875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1953.76879882812",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1953.97998046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1954.03271484375",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"1954.40222167969",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1954.56066894531",0,0,0,0,0,0,0,0,6,3,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,6,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1955.19421386719",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1955.24694824219",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1955.61657714844",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1955.88061523438",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1956.19750976562",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,4,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0 +"1956.7255859375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1957.20104980469",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1957.41235351562",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,6,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1957.8349609375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1957.99353027344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,6,5,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1958.310546875",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,4,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1958.62756347656",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1958.99755859375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1959.57897949219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1959.84326171875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1960.0546875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,4,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1960.47766113281",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1960.68908691406",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1960.95349121094",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1961.05920410156",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1961.37658691406",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,0,0,4,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1961.8525390625",0,0,0,0,0,0,0,0,3,3,6,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,7,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1962.32849121094",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1962.59301757812",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,5,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1962.85754394531",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1963.01623535156",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,7,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1963.33374023438",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1963.65112304688",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1963.86279296875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1964.23327636719",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,5,3,0,0,0,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1964.49780273438",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1964.92126464844",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,4,5,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1965.39770507812",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1965.71533203125",0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1965.97998046875",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1966.24475097656",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"1966.5625",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1966.82727050781",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,4,3,3,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1967.25085449219",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1967.56872558594",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1967.88647460938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1968.09838867188",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"1968.52221679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1968.68115234375",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1968.9990234375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"1969.58190917969",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1969.95288085938",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1970.42993164062",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,4,4,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1970.90698242188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1970.9599609375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1971.11901855469",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,3,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1971.49011230469",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1971.75524902344",0,0,0,0,0,0,0,0,5,3,4,4,0,0,0,4,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1972.232421875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1972.44458007812",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1972.60363769531",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1972.97485351562",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1973.34619140625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1973.66442871094",0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1974.03576660156",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1974.19494628906",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1974.56640625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1974.77868652344",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,5,5,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1975.15014648438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1975.62768554688",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1975.99926757812",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1976.21154785156",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1976.68933105469",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1976.95483398438",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,6,0,0,0,0 +"1977.2734375",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,5,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1977.80432128906",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,5,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1978.28234863281",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,0,0,0,0,0,4,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1978.65417480469",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1978.76037597656",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1978.86657714844",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,5,4,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1979.18530273438",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1979.50402832031",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1979.92907714844",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1980.08850097656",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"1980.24792480469",0,0,0,0,0,0,0,0,5,4,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,4,0,0,0,0,0,4,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1980.56677246094",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1980.88562011719",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1981.04504394531",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,5,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1981.52331542969",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1982.05493164062",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,5,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,4,0,0,0,6,4,4,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1982.42712402344",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1982.58654785156",0,0,0,0,0,0,0,0,4,4,5,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,4,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1983.06518554688",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1983.38415527344",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1983.75646972656",0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1984.02233886719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,4,0,4,4,0,0,5,0,0,0,0,0,0,0,0,0 +"1984.55432128906",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1984.87341308594",0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1985.03308105469",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1985.35229492188",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1985.61828613281",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1985.88439941406",0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1986.0439453125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1986.20361328125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1986.52294921875",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1986.7890625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1987.001953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1987.1083984375",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1987.80041503906",0,0,0,0,0,0,0,0,3,5,0,6,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,5,3,4,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1988.43933105469",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1988.65234375",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1989.07836914062",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1989.82397460938",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1990.037109375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,4,4,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,9,0,0 +"1990.51647949219",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"1990.83618164062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1990.88940429688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,6,0,0,0,0,0,0,0,0 +"1991.04931640625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1991.26245117188",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1991.52880859375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,5,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1992.06176757812",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1992.54138183594",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"1992.96789550781",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,6,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1993.5009765625",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1993.92749023438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1994.30078125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1994.5673828125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0 +"1994.72741699219",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1995.04736328125",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1995.20739746094",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1995.58068847656",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1995.79406738281",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1996.16748046875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1996.64770507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1996.86120605469",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1997.1279296875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1997.50146484375",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1997.66162109375",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1997.92846679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1998.03515625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1998.1953125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"1998.24865722656",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,4,4,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1998.56896972656",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,0,0,5,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1998.99609375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1999.31640625",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"1999.90380859375",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2000.22412109375",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2000.59802246094",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"2000.81164550781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2000.86511230469",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2001.185546875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2001.50610351562",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2001.82666015625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2001.88000488281",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,5,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2002.30749511719",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2002.52124023438",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2003.10900878906",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2003.69689941406",0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2004.017578125",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,0,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2004.873046875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 +"2005.03344726562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2005.5146484375",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2005.88891601562",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2006.15637207031",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2006.423828125",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,5,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +"2006.69128417969",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2007.119140625",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,4,4,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2007.54711914062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2007.60070800781",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2007.8681640625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2008.02868652344",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2008.24279785156",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2008.51037597656",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2008.9384765625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2009.4736328125",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2009.95544433594",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2010.11608886719",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2010.3837890625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2010.65148925781",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2010.91918945312",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2011.29406738281",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2011.56176757812",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2012.04382324219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2012.20446777344",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2012.41870117188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2012.68664550781",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,4,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2013.54382324219",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0 +"2013.9189453125",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2014.18688964844",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2014.40124511719",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2014.82995605469",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,0,4,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2015.2587890625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2015.52685546875",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2015.68762207031",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,4,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2016.00927734375",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2016.22375488281",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2016.54553222656",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2016.76000976562",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2017.40356445312",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,6,0,4,0,0,4,0,4,4,0,0,5,0,0,0,0,0,0,0,0,0 +"2017.77893066406",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2017.99353027344",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2018.42260742188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2018.58361816406",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2018.85180664062",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019.1201171875",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2019.28112792969",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0 +"2019.81774902344",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2020.2470703125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2020.46179199219",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2020.83740234375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2021.10583496094",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2021.53540039062",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2021.96484375",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2022.1796875",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2022.34069824219",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2022.87780761719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2023.36108398438",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2023.57592773438",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2023.79089355469",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2024.11315917969",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2024.27429199219",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2024.54296875",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2024.75793457031",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2025.13403320312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2025.34899902344",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2025.51013183594",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2025.67138671875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2026.26257324219",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2026.47766113281",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2026.74633789062",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2027.17651367188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2027.82165527344",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2028.14428710938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2028.3056640625",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"2028.78967285156",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2029.16613769531",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2029.54272460938",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2030.02685546875",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2030.24206542969",0,0,0,0,0,0,0,0,3,0,5,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2030.67248535156",0,0,0,0,0,0,0,0,4,0,5,4,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2031.15686035156",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2031.64123535156",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2032.07177734375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2032.34094238281",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2032.66394042969",0,0,0,0,0,0,0,0,3,3,0,6,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2033.09460449219",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2033.36389160156",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2033.84851074219",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2034.17163085938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2034.22546386719",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2034.60241699219",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2034.81787109375",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2035.08728027344",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2035.46435546875",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2035.6259765625",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,4,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2036.05700683594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2036.21862792969",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2036.59582519531",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2036.70361328125",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0 +"2037.08081054688",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2037.45812988281",0,0,0,0,0,0,0,0,5,4,4,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2038.15881347656",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2038.32055664062",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2038.48229980469",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,5,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2038.96752929688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2039.23718261719",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2039.50671386719",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"2039.66857910156",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2039.93823242188",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,6,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2040.53149414062",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2040.693359375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2040.90905761719",0,0,0,0,0,0,0,0,4,3,5,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2041.55639648438",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2041.826171875",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"2042.09606933594",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2042.31188964844",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,6,0,0,4,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2043.01342773438",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,3,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 +"2043.28332519531",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,4,0,0,0,0,7,0,0,0,0 +"2043.76916503906",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2043.98510742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2044.0390625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2044.47094726562",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2044.84887695312",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2045.22692871094",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2045.55090332031",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2045.76696777344",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2046.03698730469",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2046.25305175781",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2046.4150390625",0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2046.84729003906",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2046.90124511719",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2047.22546386719",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2047.38757324219",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2047.71166992188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2048.14404296875",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2048.36010742188",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2049.27905273438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2049.44116210938",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2049.60327148438",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2049.927734375",0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2050.19799804688",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2050.73876953125",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2051.1171875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2051.49584960938",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2051.71215820312",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2052.0908203125",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2052.41528320312",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,6,0,0,0,0,0,0,0,0 +"2052.68579101562",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2052.90234375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2053.33520507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2053.38916015625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2053.443359375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2053.7138671875",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2054.03857421875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,4,0,0,0,0,0,0,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2054.52563476562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0 +"2054.7421875",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2055.06689453125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2055.44580078125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2055.66235351562",0,0,0,0,0,0,0,0,4,3,4,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2055.87890625",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,5,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2056.31225585938",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2056.85375976562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2057.44946289062",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2057.82861328125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2057.99096679688",0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2058.478515625",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2058.6953125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,5,0,0,0,0,5,0,0,0,4,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"2059.12866210938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0 +"2059.39965820312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2059.72485351562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,4,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2060.05004882812",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2060.10424804688",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0 +"2060.32104492188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,0,4,0,0,0,5,0,0,0,6,0,0,0,0 +"2060.59204101562",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2061.18823242188",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,7,0,0,0,0,0,0 +"2061.4052734375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,6,0,0,3,0,3,3,0,0,0,0,0,0,0,6,0,0,0,0 +"2062.27270507812",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,6,0,0,0,0 +"2063.24877929688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2063.52001953125",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2063.89990234375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,4,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2064.60498046875",0,0,0,0,0,0,0,0,3,5,5,4,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2064.9306640625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2065.20190429688",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,4,5,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2065.90747070312",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2066.1787109375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2066.34155273438",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2066.66723632812",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"2066.93872070312",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2067.48168945312",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2067.75317382812",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2068.13330078125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2068.3505859375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2068.67626953125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2068.83935546875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2069.11083984375",0,0,0,0,0,0,0,0,3,3,0,6,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,4,5,0,0,0,0,0,0,0,0 +"2069.97998046875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,4,5,0,0,3,0,4,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2070.41455078125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2070.74072265625",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2070.90356445312",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2071.06665039062",0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2071.33837890625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2071.77319335938",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"2072.31665039062",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2072.64282226562",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2073.1865234375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2073.62158203125",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2073.83911132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2073.89331054688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2074.05639648438",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2074.5458984375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2074.76342773438",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2075.03540039062",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2075.68823242188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,3,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2075.96020507812",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2076.232421875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2076.3955078125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,4,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2076.93969726562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2077.15747070312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,4,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2077.5927734375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2077.97387695312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2078.4091796875",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2078.57250976562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2078.8447265625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2079.0625",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2079.22583007812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2079.55249023438",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,5,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2080.09716796875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2080.2060546875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2080.47827148438",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2080.80517578125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,5,6,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2081.13208007812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2081.29541015625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2081.56787109375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2082.05810546875",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2082.38500976562",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2083.20263671875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2083.36596679688",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2083.47509765625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2084.07470703125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2084.23828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2084.45629882812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2084.61987304688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2084.78344726562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2085.11059570312",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2085.43774414062",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,6,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2085.92846679688",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,5,6,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2086.31030273438",0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2086.74658203125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2086.80102539062",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2087.01928710938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2087.18286132812",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2087.728515625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2088.21948242188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2088.38330078125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2088.87451171875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2089.14721679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2089.25659179688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2089.47485351562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2089.583984375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2089.85693359375",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2090.29370117188",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2090.56665039062",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2090.94873046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2091.11254882812",0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2091.54956054688",0,0,0,0,0,0,0,0,4,0,4,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2092.041015625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2092.42333984375",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2092.8056640625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2092.91479492188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2093.02416992188",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2093.84375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2094.00756835938",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2094.33544921875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2094.39013671875",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2094.77270507812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2095.2099609375",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2095.53784179688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2095.70190429688",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2096.08447265625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2096.52197265625",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2096.74047851562",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2096.95922851562",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2097.17797851562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2097.28735351562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2097.50610351562",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2097.94360351562",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2098.32641601562",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2098.65478515625",0,0,0,0,0,0,0,0,4,4,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,5,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2098.98291015625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2099.31127929688",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2099.69409179688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2099.9677734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2100.0771484375",0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,4,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2100.62451171875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2100.84326171875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2101.00756835938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2101.28125",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2101.60961914062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2101.93823242188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2102.2119140625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2102.2666015625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2102.75927734375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2102.92358398438",0,0,0,0,0,0,0,0,3,3,6,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2103.36181640625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2103.52612304688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2104.07373046875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2104.29272460938",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2104.67626953125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2105.0048828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2105.498046875",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,3,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2105.9912109375",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2106.59399414062",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2106.97778320312",0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2107.19702148438",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2107.52587890625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2107.69018554688",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2107.96435546875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2108.56762695312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2108.95141601562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2109.17065429688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2109.71923828125",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2110.10302734375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2110.37744140625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2110.65161132812",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2110.98071289062",0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2111.14526367188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2111.69409179688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2111.91357421875",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,4,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2112.29760742188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2112.57202148438",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2112.95629882812",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2113.34057617188",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2113.77978515625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2114.10913085938",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2114.21899414062",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2114.658203125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2114.93286132812",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2115.15234375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2115.75659179688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2116.19604492188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2116.41577148438",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2117.18481445312",0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2117.5693359375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2118.00903320312",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2118.39379882812",0,0,0,0,0,0,0,0,3,3,5,4,0,0,0,3,0,0,0,0,3,4,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,4,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2119.05322265625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2119.10815429688",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,4,0,0,0,4,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2119.4931640625",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2119.98779296875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2120.2626953125",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2120.427734375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2120.70263671875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2121.03271484375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2121.25268554688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2121.69262695312",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2122.02270507812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2122.07763671875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2122.24267578125",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2122.517578125",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2122.79272460938",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2122.95776367188",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,5,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2123.45288085938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2123.6181640625",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2123.83813476562",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2123.89331054688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2124.38842773438",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2125.21411132812",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2125.92993164062",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2126.15014648438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2126.26025390625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2126.48046875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2126.9208984375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2127.91235351562",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2128.07763671875",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2128.46313476562",0,0,0,0,0,0,0,0,4,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2128.79370117188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2129.01416015625",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2129.17944335938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2129.73046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2129.95092773438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2130.17138671875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2130.28149414062",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2130.55712890625",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2130.72241210938",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2131.27368164062",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,4,0,0,3,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2131.76977539062",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2131.99047851562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2132.26611328125",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2132.8173828125",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2133.0380859375",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2133.92065429688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2134.0859375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2134.1962890625",0,0,0,0,0,0,0,0,6,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2134.52734375",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,3,0,0,0,0,0,0,5,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2134.91357421875",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2135.13427734375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2135.189453125",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,5,0,0,3,0,3,3,0,0,0,5,0,0,0,0,0,0,0,0 +"2135.57568359375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2135.79638671875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2135.8515625",0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2136.12744140625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2137.0107421875",0,0,0,0,0,0,0,0,3,5,4,4,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2137.56274414062",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2138.169921875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2138.44604492188",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2138.83251953125",0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2139.49536132812",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2139.99243164062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2140.2685546875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2140.43432617188",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,6,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2140.87646484375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2141.318359375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2141.5947265625",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2142.03686523438",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2142.31298828125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2142.47900390625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0 +"2142.75537109375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2142.97631835938",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2143.14233398438",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2143.19750976562",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2143.47387695312",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2143.91625976562",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2144.19262695312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2144.35864257812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2144.46923828125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2144.5244140625",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2145.07739257812",0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2145.4091796875",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0,0,4,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2145.85180664062",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,4,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2146.18359375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2146.515625",0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2146.95825195312",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2147.4560546875",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2147.67749023438",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,4,0,3,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2147.9541015625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,6,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2148.39697265625",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,4,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2148.89501953125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2149.44873046875",0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2149.7255859375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2149.8916015625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2150.0576171875",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2150.50073242188",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2150.8330078125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,5,0,0,0,0,0,0,0,0 +"2151.10986328125",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2151.33129882812",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2151.6083984375",0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2151.99609375",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2152.32836914062",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2152.9931640625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2153.4365234375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2153.49194335938",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2153.8798828125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2154.21240234375",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2154.37866210938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2154.544921875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2154.87744140625",0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,5,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2155.43188476562",0,0,0,0,0,0,0,0,3,3,0,5,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2155.9306640625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2156.2080078125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2156.65161132812",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2157.15063476562",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,4,3,3,0,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2157.81616210938",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2158.0380859375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2158.26000976562",0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2158.53735351562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,4,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2158.92578125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2159.25854492188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,5,5,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2159.70263671875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2159.869140625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2160.09106445312",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2160.8125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,5,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2161.36767578125",0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,4,0,0,0,0,3,0,0,4,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2162.03393554688",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2162.255859375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2162.7001953125",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,4,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2163.14453125",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2163.42211914062",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2163.9775390625",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2164.19970703125",0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2164.533203125",0,0,0,0,0,0,0,0,3,0,4,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2164.75537109375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2165.31103515625",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,4,3,0,3,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2165.86669921875",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,4,0,0,0,0,0,4,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2166.36669921875",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2166.47802734375",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2166.8115234375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,5,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2166.97827148438",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2167.3671875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,4,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2167.86767578125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2168.14575195312",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2168.64599609375",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2168.97973632812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2169.369140625",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2170.03637695312",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2170.20336914062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2170.37036132812",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2170.537109375",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2170.87084960938",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2171.20483398438",0,0,0,0,0,0,0,0,0,4,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2171.42724609375",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2171.70556640625",0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2171.92822265625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2172.09521484375",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 +"2172.26196289062",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2172.48461914062",0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2172.98559570312",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2173.31958007812",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2173.54223632812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2173.59790039062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2173.82055664062",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2174.09912109375",0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2174.32177734375",0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2174.48876953125",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2174.93432617188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2175.26831054688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2175.93676757812",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2176.10375976562",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2176.9951171875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2177.32958984375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2177.71948242188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2177.9423828125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2178.10961914062",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"2178.38818359375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2178.72265625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2178.88989257812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2179.11279296875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +"2179.61450195312",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2179.72607421875",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2180.39501953125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2180.72973632812",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2180.95263671875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2181.11987304688",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2181.45458984375",0,0,0,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,5,0,0,0,5,0,0,0,0,0,0,0,0 +"2181.95654296875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2182.2353515625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2182.40283203125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2182.79321289062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2183.29541015625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,3,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2183.74169921875",0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2183.9091796875",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2184.07666015625",0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2184.46728515625",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2184.74633789062",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2184.96948242188",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2185.19287109375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2185.52783203125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2185.97436523438",0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2186.30932617188",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2186.53271484375",0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2186.86767578125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2187.03540039062",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2187.25854492188",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,5,0,0,0,0,0,0,0,0,0 +"2187.70556640625",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2187.873046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2188.15234375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2188.31982421875",0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2188.87841796875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2189.26953125",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2189.548828125",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2189.71655273438",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,0,3,5,0,0,4,0,0,0,0,0,0,0,0,0 +"2189.99584960938",0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2190.38720703125",0,0,0,0,0,0,0,0,6,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2191.001953125",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2191.2255859375",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2191.44897460938",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2191.9521484375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,3,0,4,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2192.34350585938",0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,3,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,4,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2192.90258789062",0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2193.18237304688",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2193.35009765625",0,0,0,0,0,0,0,0,4,0,4,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2193.685546875",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2194.02124023438",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,3,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,4,4,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2194.30078125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2194.74829101562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2194.97216796875",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2195.4755859375",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2195.6435546875",0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2195.92333984375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2196.203125",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2196.65063476562",0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2196.98657226562",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2197.37841796875",0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2197.77026367188",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,3,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2198.44189453125",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2198.498046875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 +"2198.666015625",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2199.05786132812",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0 +"2199.72998046875",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2200.01000976562",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,4,0,0,0,0,0,0,0,0,0 +"2200.6259765625",0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2201.2421875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2201.29833984375",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2201.74658203125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,3,3,0,0,0,0,0,0,4,0,0,0,3,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2202.30688476562",0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,3,0,0,0,0,0,4,0,0,0,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2202.97924804688",0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,3,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,4,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2203.37182617188",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2203.427734375",0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,3,0,0,0,0,0,0,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2203.7080078125",0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2204.2685546875",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2204.60498046875",0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2204.88525390625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,4,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2205.38989257812",0,0,0,0,0,0,0,0,3,4,0,5,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2205.89477539062",0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2206.3994140625",0,0,0,0,0,0,0,0,4,3,0,4,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0 +"2207.0166015625",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,4,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2207.24096679688",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2207.35302734375",0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,4,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0 +"2207.74584960938",0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,5,0,0,0,0,3,3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/preprocessing_results3.csv Tue Oct 31 15:05:05 2017 -0400 @@ -0,0 +1,4276 @@ +"","x = 1, y = 1","x = 2, y = 1","x = 3, y = 1","x = 1, y = 2","x = 2, y = 2","x = 3, y = 2","x = 1, y = 3","x = 2, y = 3","x = 3, y = 3" +"700.195556640625",1.98482145593659,0,0,0,0,0,0,0,3.24993448176857 +"700.432556152344",0,0,0,3.32221945692952,0,0,0,0,0 +"700.511535644531",3.31893277499555,3.63743016544055,0,0,0,4.60942021315409,0,0,0 +"700.795959472656",2.25577544310682,0,0,0,0,0,0,0,0 +"700.890808105469",2.48092547354592,2.72630500649255,0,0,0,0,0,0,0 +"701.080505371094",2.57002333045023,0,5.21703134723479,0,0,4.04647085500485,0,0,0 +"701.238586425781",0,2.02158831940106,0,0,0,0,0,0,0 +"701.491516113281",3.02418951746824,2.59207566728163,0,0,0,0,0,0,0 +"701.807800292969",0,2.32179101741099,0,0,0,0,0,0,0 +"701.918518066406",3.63485581243559,0,3.02474310892054,0,0,3.62525027314871,0,0,0 +"702.171630859375",0,2.51023573083709,0,2.42680209534448,0,0,0,0,0 +"702.345642089844",3.73953677055312,4.65168625541699,0,0,0,0,0,0,0 +"702.535522460938",0,0,3.61077932408287,0,0,0,0,0,0 +"702.662109375",2.29342863315715,0,0,3.05204384050417,0,5.3698631699703,0,0,0 +"702.883666992188",4.57561314693459,0,0,0,0,0,0,0,0 +"703.089477539062",2.78564736185907,0,0,0,0,0,0,0,0 +"703.279418945312",2.61697764708073,0,0,0,0,7.18915408791391,0,0,0 +"703.532775878906",1.97143536463222,0,0,0,0,5.93542609364803,0,0,0 +"704.007873535156",0,0,0,2.4257131744429,0,4.26561387872637,0,0,0 +"704.229675292969",0,0,0,0,0,0,0,0,0 +"704.308898925781",1.96082044203134,0,0,0,0,0,0,0,0 +"704.403930664062",0,0,0,0,0,0,0,0,0 +"704.530700683594",0,0,0,0,0,0,0,0,0 +"704.736755371094",4.14224622298578,0,0,0,0,4.15166856523019,0,0,0 +"704.958618164062",3.95841689409055,0,0,0,0,0,0,4.66775215505754,0 +"705.212280273438",2.74262060769713,0,0,2.82540326920685,0,0,0,0,0 +"705.402526855469",3.14936671742715,3.687526082297,2.85264995359107,0,0,4.13560077618529,0,0,0 +"705.576965332031",0,0,0,0,0,0,0,4.01082101949016,0 +"705.941711425781",0,2.00951467127891,0,0,0,0,0,0,0 +"705.989318847656",4.38297332077243,0,0,0,0,0,0,0,0 +"706.132080078125",1.75946571581501,2.47619822533908,4.95597085019828,0,0,0,0,0,0 +"706.338317871094",5.53256467782857,0,0,0,0,0,0,4.51290255591167,0 +"706.576354980469",0,0,0,0,0,0,0,0,0 +"706.655700683594",0,2.24974657888783,0,0,0,0,0,0,0 +"706.846130371094",0,0,0,0,0,0,0,0,0 +"706.893798828125",2.45237373425898,2.9648456367751,0,0,0,0,0,0,0 +"707.068359375",1.65155386220219,0,2.95144354926732,0,0,0,0,0,0 +"707.338256835938",2.61499841458573,0,0,0,0,13.1966446371555,0,0,0 +"707.608215332031",1.62477564572776,2.96432280381473,0,0,0,6.85787137173145,0,0,0 +"707.782958984375",0,0,0,0,0,0,0,0,0 +"708.06884765625",3.24368677005311,3.15276751724082,0,0,0,7.27828400909434,0,0,0 +"708.720336914062",2.13902218970563,0,0,0,0,4.2316963781871,0,0,0 +"708.926940917969",4.56006698210849,0,2.79939181982347,0,0,2.77486945065883,0,0,0 +"709.054138183594",4.00875950847198,3.15276751724082,0,0,0,2.72146265105291,0,0,0 +"709.356201171875",0,0,0,0,0,5.86495382845522,0,0,0 +"709.578796386719",0,0,0,0,0,3.71176662880065,0,0,0 +"709.801452636719",0,0,0,0,0,0,0,0,0 +"709.912841796875",2.04971258925316,0,0,0,0,0,0,0,0 +"710.11962890625",0,0,0,0,0,0,0,0,0 +"710.183227539062",2.2839157630288,0,0,2.65126482483864,0,0,0,0,0 +"710.294616699219",0,2.81043842884702,2.64650925702713,0,0,0,0,0,0 +"710.358276367188",2.93054093518225,0,0,0,0,0,0,0,0 +"710.549255371094",0,0,0,3.05204384050417,0,0,0,0,0 +"710.772033691406",0,0,0,0,0,0,0,0,0 +"710.931213378906",4.40777230475186,0,0,0,0,0,0,0,0 +"711.122253417969",0,0,0,0,0,0,0,0,0 +"711.201843261719",4.22700509805656,1.94143966028289,0,2.74733393706692,0,0,0,0,0 +"711.392883300781",2.53237617426559,0,0,4.0111419289376,0,0,0,0,0 +"711.583984375",2.15241431487569,2.57189779856447,0,0,0,0,0,0,0 +"711.71142578125",0,0,0,3.12184591918233,0,0,0,0,0 +"711.982177734375",3.7637918015677,2.76034251199056,2.62729866449399,0,0,4.33687038982666,0,0,0 +"712.268920898438",4.03176287648627,3.84088762430433,0,0,0,5.03938839828109,0,0,0 +"712.444213867188",1.65155386220219,2.10342825584561,0,0,0,0,0,0,0 +"712.715148925781",2.53561310362657,3.34519699390321,0,0,0,0,0,0,0 +"712.87451171875",4.01094445064946,2.12988437370898,0,3.05204384050417,0,0,0,0,3.23290205471133 +"713.113647460938",3.21578339031259,0,0,0,0,0,0,0,0 +"713.400634765625",6.70384560687829,1.9535286441142,0,0,0,0,0,0,0 +"713.639831542969",0,0,0,0,0,0,0,0,0 +"713.75146484375",2.15873252920421,4.55547918494038,0,2.4257131744429,0,0,0,0,0 +"713.879089355469",2.76749880162484,1.9535286441142,0,3.86000375541478,0,0,0,0,0 +"714.086486816406",0,0,5.44321346968435,0,0,0,0,0,0 +"714.261962890625",2.21316614217552,0,0,0,0,0,0,0,0 +"714.341735839844",0,0,0,0,0,0,0,0,0 +"714.421508789062",0,2.17601086303829,0,0,0,2.92273226469429,0,0,0 +"714.676879882812",0,0,0,0,0,0,0,0,0 +"714.964172363281",1.89572359903229,0,0,0,0,0,0,0,0 +"715.139770507812",0,0,0,2.81822493664666,0,0,0,0,0 +"715.427185058594",2.77613449173073,0,0,0,0,0,0,0,0 +"715.842407226562",0,0,0,5.749021552274,0,0,0,0,0 +"716.018127441406",0,0,0,0,0,0,0,0,3.05221823259469 +"716.098022460938",5.70490190410046,0,0,0,0,0,0,4.6347119032934,0 +"716.273742675781",0,0,3.47708298385907,0,0,0,0,5.46145450599668,0 +"716.529418945312",1.71706212456619,0,4.2335506876459,0,0,3.67784912826138,0,5.74618454298096,0 +"716.833068847656",1.98461574625411,2.51023573083709,0,2.43401236807582,0,0,0,0,0 +"717.152770996094",0,0,0,0,0,3.16134088889667,0,0,0 +"717.328674316406",1.80145185383317,0,0,0,0,0,0,0,0 +"717.520568847656",0,0,0,0,0,0,0,0,0 +"717.632507324219",0,0,0,2.40165592286708,0,0,0,0,0 +"717.840393066406",6.78798131903594,0,0,0,0,0,0,12.3312019913326,0 +"718.144348144531",4.66731339924702,0,0,0,0,13.6079551662948,0,0,0 +"718.320373535156",0,0,0,0,0,6.69748493945073,0,0,0 +"718.640380859375",2.0633104241057,6.72043139435897,0,0,0,0,0,6.90182036638462,0 +"718.864501953125",0,3.51064751974184,2.98634629381487,0,0,6.31018185813386,0,0,0 +"719.024536132812",4.65371556439448,3.16433366811174,0,0,0,0,0,0,0 +"719.264709472656",2.0828150539218,0,2.7069060375977,2.69700965194097,0,0,0,6.37901622167751,0 +"719.488891601562",0,0,0,0,0,8.97110599529651,0,0,0 +"719.648986816406",2.39162190695914,0,0,0,0,0,0,0,0 +"719.713073730469",1.68552747302759,2.66412010580479,0,0,0,0,0,0,0 +"720.001403808594",4.70318703261914,0,0,0,0,0,0,4.7699215407982,0 +"720.289794921875",3.32348350037724,3.79477647068417,2.62729866449399,4.55719348088464,0,5.3111065785295,0,0,0 +"720.658325195312",0,0,0,0,0,2.92354020918754,0,0,0 +"720.930786132812",1.80186930706382,2.68660679614102,3.62915908326353,0,0,0,0,0,0 +"721.1552734375",2.87387407260661,0,0,0,0,0,0,0,0 +"721.34765625",0,0,4.40564384297538,0,0,0,0,0,0 +"721.620239257812",0,0,0,0,0,0,0,0,0 +"721.684387207031",3.67333184121584,2.06719197576999,0,0,0,3.76778699393506,0,0,0 +"721.924987792969",3.44478144529443,2.53387552983017,0,0,0,0,0,0,0 +"722.181640625",1.83951646324846,2.22558394693437,2.71978444671975,0,0,5.31113027711527,0,0,0 +"722.374206542969",0,0,0,0,0,0,0,0,0 +"722.454406738281",0,0,0,0,0,0,0,0,0 +"722.614929199219",2.21729941432657,0,0,0,0,0,0,0,0 +"722.807495117188",2.44761729919481,2.02160365511021,4.02657915772948,0,0,0,0,0,0 +"723.000122070312",6.17422770523536,0,3.87369659493314,0,0,0,0,0,0 +"723.16064453125",0,0,0,0,0,0,0,0,0 +"723.385437011719",0,0,0,2.67644293748719,0,0,0,0,0 +"723.626281738281",0,0,0,0,0,0,0,0,0 +"723.674499511719",3.73544577196323,0,0,5.45369976337125,0,0,0,4.18725972031121,0 +"723.963562011719",0,0,6.61714267382276,0,0,0,0,0,0 +"724.140319824219",4.52133693621891,0,0,2.42680209534448,0,0,0,0,0 +"724.381286621094",0,0,0,0,0,0,0,0,0 +"724.638427734375",0,0,0,0,0,0,0,0,0 +"724.71875",0,0,0,2.32967600238577,0,0,0,0,0 +"724.895568847656",0,0,3.83613061317995,0,0,0,0,0,0 +"725.008056640625",3.93613506170528,0,0,0,0,0,0,0,0 +"725.217041015625",2.38409430319149,3.97563979647563,0,0,0,7.04045963079943,0,0,0 +"725.522583007812",1.75491499043332,0,0,0,0,0,0,0,0 +"725.763793945312",0,0,0,0,0,0,0,0,0 +"725.84423828125",0,3.31063665544482,0,0,0,0,0,0,0 +"725.940734863281",0,0,0,0,0,2.7927191621532,0,0,0 +"726.182006835938",1.76380469764853,0,0,2.72215582441838,0,0,0,0,0 +"726.487731933594",0,0,0,0,0,0,0,0,0 +"726.584289550781",2.10748753816703,2.11728789262645,2.7069060375977,0,0,0,0,0,0 +"726.970520019531",0,0,0,0,0,3.45870610453986,0,0,0 +"727.067138671875",4.32969475594771,2.27169510055454,0,0,0,0,0,0,0 +"727.566223144531",0,0,3.10435048202426,0,0,0,0,0,0 +"727.743408203125",0,2.61454702190871,0,0,0,0,0,0,0 +"727.936645507812",2.61520412426821,2.71421602266125,2.71978444671975,0,0,0,0,0,0 +"728.162170410156",2.77027600419402,4.00738381606372,0,0,0,0,0,0,0 +"728.597229003906",0,0,0,0,0,0,0,4.26576118981022,0 +"728.790588378906",0,0,0,0,0,0,0,0,0 +"729.145202636719",2.85593725592055,0,0,0,0,0,0,5.45059511789291,0 +"729.322570800781",0,0,0,0,0,0,0,0,3.30050524551986 +"729.467651367188",3.29670528390281,0,2.66569547959966,0,0,0,0,0,0 +"729.677307128906",0,0,0,0,0,2.88881476415501,0,0,0 +"729.774047851562",0,0,0,0,0,0,0,0,0 +"729.854675292969",0,0,0,0,0,3.36182625663057,0,0,0 +"730.11279296875",2.99062732600779,0,0,0,0,0,0,5.04645081279345,0 +"730.419311523438",2.14811760660332,4.40379358455028,0,0,0,0,0,0,0 +"730.51611328125",0,0,0,0,0,0,0,0,0 +"730.612915039062",2.23156268565339,0,0,2.84337110912406,0,0,0,0,0 +"730.693603515625",0,0,0,0,0,0,0,0,0 +"730.822692871094",3.71709753591221,0,0,2.4005670019655,0,0,0,0,0 +"731.032531738281",0,0,0,0,0,0,0,0,0 +"731.11328125",3.86674754429956,0,0,0,0,4.04647085500485,0,0,0 +"731.323120117188",0,0,0,0,0,0,0,5.31695901169198,0 +"731.419982910156",0,0,0,0,0,0,0,0,0 +"731.516845703125",0,0,0,0,0,0,0,0,0 +"731.694519042969",0,0,0,0,0,0,0,0,0 +"731.856018066406",0,0,0,0,0,0,0,4.62494956043741,0 +"732.211364746094",0,0,0,2.33076492328735,0,4.48554114835536,0,4.35658030278777,0 +"732.405212402344",0,0,0,0,0,0,0,0,0 +"732.518310546875",0,0,0,0,0,0,0,0,0 +"732.696044921875",2.31156512566,0,0,0,0,0,0,0,0 +"733.051635742188",3.90847966520839,0,0,0,0,0,0,0,0 +"733.277954101562",3.68829177951594,3.23690093959528,0,0,0,0,0,0,0 +"733.520446777344",2.27983079830461,0,0,0,0,0,0,0,0 +"733.698303222656",0,0,0,0,0,0,0,4.11200863591213,0 +"733.876220703125",4.32995480692273,4.4032707515899,0,0,0,0,0,0,0 +"734.19970703125",3.41581828664252,0,0,0,0,0,0,0,0 +"734.458557128906",0,0,0,0,0,0,0,0,0 +"734.539428710938",0,0,0,0,0,3.51130495965253,0,0,0 +"734.733642578125",0,0,0,0,0,0,0,0,0 +"734.976379394531",2.90131772555532,0,0,0,0,0,0,0,0 +"735.186828613281",5.17998609622917,0,0,0,0,0,0,0,0 +"735.381042480469",0,3.01095679039526,0,0,0,0,0,0,0 +"735.478210449219",0,0,0,0,0,5.7859236920403,0,0,0 +"735.688720703125",0,1.9875661496122,0,0,0,3.97440639941132,0,0,0 +"735.996398925781",4.91751643077489,0,0,2.33076492328735,0,0,0,0,0 +"736.530944824219",1.95585829728469,3.10665636362066,2.76099500471779,0,0,0,0,0,2.6863472861809 +"736.806396484375",3.16928880047389,2.82251207696917,0,2.33076492328735,0,0,0,0,0 +"736.984680175781",3.7592471100517,0,0,2.53004954013296,0,0,0,0,0 +"737.162963867188",3.19354383148848,0,0,0,0,5.31372014405799,0,0,0 +"737.454772949219",3.08902630949227,2.70972376217373,0,0,0,0,0,0,0 +"737.681762695312",2.14989112941584,0,0,0,0,0,0,0,0 +"738.135864257812",4.32928333658275,0,3.98901317597629,0,0,0,0,0,0 +"738.444030761719",0,0,3.00636334973989,0,0,0,0,0,0 +"738.573852539062",2.50341301561368,1.9754771657809,0,2.92256130233671,0,4.75989659271804,0,0,0 +"738.9794921875",3.79280930151214,0,0,2.72215582441838,0,0,0,0,0 +"739.255432128906",4.36734794599804,3.34519699390321,0,2.81822493664666,0,0,0,0,0 +"739.482727050781",0,2.29533489954762,0,0,0,0,0,0,0 +"739.953552246094",2.77911740398238,0,0,0,0,0,0,0,0 +"740.099731445312",2.50973726380789,2.65256929064302,0,4.13956748637463,0,0,0,0,0 +"740.39208984375",0,0,0,0,0,3.22009748033748,0,0,0 +"740.489562988281",1.78215896756524,0,2.79305963641238,2.53004954013296,0,0,0,0,0 +"740.6845703125",0,2.42610230848262,3.27011145394265,0,0,0,0,0,0 +"741.025817871094",5.99122121507005,2.82251207696917,0,0,0,0,0,0,0 +"741.253356933594",2.59318234285796,0,0,0,0,4.41428463725508,0,0,0 +"741.562194824219",0,0,0,0,0,0,0,0,0 +"741.724792480469",1.65631029726636,0,0,0,0,0,0,0,0 +"741.822326660156",5.20969422928119,1.99963979773436,2.62729866449399,3.4434347416352,0,0,0,0,3.50708974138935 +"742.2939453125",3.0827564025906,0,3.78204164605986,0,0,0,0,4.39012583781451,0 +"742.424072265625",2.99537772720628,0,0,3.12293484008391,0,2.77486945065883,0,0,0 +"742.65185546875",0,0,4.08066812484957,0,0,3.60043488083296,0,0,0 +"742.960998535156",2.87474521876337,0,0,0,0,0,0,0,0 +"743.172546386719",0,0,0,0,0,0,0,0,0 +"743.611999511719",0,0,4.11906493995524,0,0,0,0,0,0 +"743.693420410156",2.48935545396933,4.57795053956746,0,0,0,0,0,0,0 +"743.888793945312",1.90572139258574,0,0,0,0,0,0,0,0 +"744.051635742188",2.97294452643106,0,0,0,0,3.22009748033748,0,0,3.02630074554138 +"744.361083984375",1.85766502348269,2.56843586828855,2.71978444671975,0,0,0,0,0,0 +"744.589111328125",0,1.9875661496122,0,0,0,0,0,0,0 +"744.719482421875",2.40521974181168,0,4.17315390707533,0,0,0,0,0,2.87082659459299 +"745.126831054688",4.36194918525314,3.91347023149702,0,2.74733393706692,0,0,0,0,0 +"745.338684082031",3.32823993544141,0,2.83427019441041,0,0,0,0,0,0 +"745.534301757812",0,0,0,0,0,0,0,0,0 +"745.697326660156",0,0,0,0,0,0,0,0,0 +"745.925537109375",0,0,0,0,0,0,0,0,0 +"746.104919433594",4.61606840820984,0,0,0,0,3.51130495965253,0,0,0 +"746.528991699219",4.12404935532471,5.56731901056166,4.71060250517617,2.94770747481412,0,0,0,0,0 +"746.855224609375",2.45258547780715,2.10342825584561,0,0,0,4.87203628517899,0,0,0 +"747.083679199219",1.72726562780212,0,0,0,0,0,0,0,0 +"747.524291992188",2.59338805254043,2.40193967652916,0,0,0,0,0,4.42208344293412,0 +"747.703857421875",1.91386612540083,4.00967730197364,2.95144354926732,0,0,2.72146265105291,0,0,0 +"747.899780273438",0,0,5.01005981731836,0,0,2.87013340958162,0,0,0 +"748.079406738281",0,0,0,0,0,0,0,0,0 +"748.128356933594",3.02372375681074,0,3.09801829861317,0,0,0,0,0,0 +"748.340698242188",2.32066054255769,0,3.40297696081396,0,0,0,0,0,0 +"748.601989746094",2.34942402539281,2.22558394693437,4.70427032176508,0,0,0,0,0,0 +"748.814331054688",2.77138409053225,0,4.7034394884126,0,0,0,0,0,0 +"749.173828125",3.53843606144611,0,0,2.32967600238577,0,0,0,0,0 +"749.353576660156",2.26916153441119,0,2.78020559725093,3.14699209165973,0,0,0,0,0 +"749.811218261719",0,3.34519699390321,0,0,0,0,0,0,0 +"750.007385253906",0,0,0,0,0,0,0,0,0 +"750.056457519531",3.16730956797889,0,0,0,0,0,0,0,0 +"750.33447265625",4.02590438894956,0,2.76099500471779,2.84337110912406,0,0,0,0,0 +"750.776062011719",2.51857866359625,3.86734374216771,0,0,0,0,0,0,0 +"751.11962890625",4.89136137721358,3.49908136887091,0,0,0,3.45870610453986,0,0,0 +"751.381408691406",0,0,0,0,0,2.92354020918754,0,0,0 +"751.528686523438",2.38727689125993,2.12988437370898,2.85348078694355,0,0,0,0,0,0 +"751.823303222656",0,0,0,0,0,0,0,0,0 +"752.052490234375",3.27025927684506,0,0,0,0,3.54783602572029,0,0,0 +"752.265380859375",2.06351613378818,0,0,0,0,0,0,0,0 +"752.527404785156",0,2.03367730323236,4.08149895820205,0,0,0,0,0,0 +"752.756652832031",0,2.80645366561072,2.90673892071116,0,0,0,0,0,0 +"753.002380371094",0,0,2.62729866449399,2.40165592286708,0,0,0,0,0 +"753.084289550781",4.40995724692934,2.16392187920699,3.32336958771025,0,0,0,0,0,0 +"753.395629882812",1.7214071402654,0,4.08066812484957,0,0,0,0,0,0 +"753.657836914062",0,0,0,0,0,0,0,0,3.73074029091701 +"754.083984375",3.41820893850248,0,3.00636334973989,0,0,0,0,0,0 +"754.379150390625",2.74712302565198,2.23818042801691,0,0,0,0,0,0,0 +"754.707092285156",0,0,0,0,0,0,0,0,0 +"754.75634765625",0,0,0,2.92256130233671,0,0,0,0,0 +"755.002380371094",0,0,0,0,0,0,0,0,0 +"755.084411621094",3.24322704326131,0,0,0,0,0,0,0,0 +"755.248413085938",1.88055795104972,2.6762090896361,0,0,0,0,0,0,0 +"755.560180664062",0,0,0,0,0,0,0,0,0 +"755.642272949219",0,0,0,0,0,0,0,0,0 +"755.74072265625",1.81980612374988,0,0,0,0,0,0,0,0 +"755.921264648438",0,0,0,0,0,0,0,0,0 +"756.16748046875",3.51124039174103,0,0,0,0,0,0,0,0 +"756.364501953125",0,0,0,0,0,0,0,0,0 +"756.528686523438",0,0,0,0,0,5.37328467999204,0,0,0 +"756.840759277344",0,0,0,0,0,0,0,0,0 +"757.185668945312",20.1937963612606,0,0,0,0,0,0,0,0 +"757.464965820312",4.48525759316431,0,0,0,0,0,0,0,0 +"757.596435546875",3.27699494440423,0,0,2.92256130233671,0,0,0,0,0 +"757.842956542969",3.48243463534476,0,2.93225732669478,0,0,3.27269633545014,0,7.56997210018277,0 +"758.220947265625",12.427943782393,0,2.90756975406364,0,0,3.17921429897682,0,0,0 +"758.533325195312",0,2.65256929064302,3.45789676128654,0,0,0,0,0,0 +"758.845764160156",0,3.9371100304901,0,2.4005670019655,0,0,0,0,0 +"759.191162109375",4.56957381837114,3.04447146293289,0,0,0,0,0,0,0 +"759.405029296875",1.65630426340067,0,0,0,0,0,0,0,0 +"759.602478027344",3.01963879208655,0,0,0,0,0,0,0,0 +"759.915161132812",2.2930111799265,2.72232024325626,0,0,0,0,0,0,0 +"760.244323730469",0,0,0,0,0,0,0,0,0 +"760.408935546875",2.38686547189497,0,2.7069060375977,2.33076492328735,0,0,0,0,0 +"760.655883789062",0,0,0,0,0,0,0,0,0 +"760.754699707031",2.07867574790507,0,0,0,0,4.8007797740787,0,0,0 +"761.03466796875",4.31887412366435,2.77241616011272,0,0,0,0,0,0,0 +"761.413513183594",2.34446188064616,0,0,3.12293484008391,0,0,0,0,5.15044569653324 +"761.742980957031",3.32368921005972,0,0,3.29707328445212,0,0,0,0,0 +"761.973693847656",0,0,3.38459720163331,0,0,3.05274536723537,0,0,0 +"762.286865234375",4.28304879771907,0,0,5.22814811297551,0,0,0,0,0 +"762.698974609375",1.88641643858643,0,0,0,0,0,0,0,0 +"762.979309082031",3.20082345201249,2.19154644143637,0,2.92256130233671,0,5.09198725339375,0,0,3.45653579093852 +"763.424621582031",0,0,0,2.84337110912406,0,0,0,0,0 +"763.688537597656",0,2.56843586828855,0,0,0,0,0,0,0 +"763.870056152344",3.85633833138115,0,0,0,0,0,0,0,0 +"764.051513671875",2.44306657381312,0,0,0,0,0,0,0,0 +"764.18359375",1.74388864846747,0,0,2.32967600238577,0,0,0,0,0 +"764.398132324219",1.67602063676494,0,0,0,0,0,0,0,0 +"764.711791992188",0,2.58397144668662,3.25092523137011,0,0,0,0,0,0 +"764.975952148438",4.78365523328325,0,0,0,0,0,0,0,0 +"765.2236328125",0,0,0,0,0,0,0,0,0 +"765.421813964844",2.12385654172305,0,0,0,0,0,0,0,0 +"766",3.6411800606298,2.03367730323236,0,0,0,0,0,0,0 +"766.181823730469",3.45321745958353,2.8340782278401,6.25562691440503,0,0,3.01267013036797,0,0,0 +"766.694152832031",0,4.01136857930002,0,0,0,0,0,4.2203143706786,0 +"767.024780273438",0,0,0,0,0,0,0,0,0 +"767.223205566406",2.08757148898597,0,0,0,0,0,0,0,0 +"767.487854003906",4.37962595096418,0,0,0,0,0,0,0,0 +"767.554016113281",0,4.45977961171499,0,0,0,0,0,0,0 +"767.620178222656",3.02893991866672,2.43766845935355,0,0,0,0,0,0,3.03953768630317 +"767.950988769531",2.44327831736128,5.93727266118484,0,2.62611865236124,0,0,0,0,3.28782469922835 +"768.232299804688",0,0,0,0,0,0,0,0,0 +"768.33154296875",3.17859596091976,0,0,0,0,0,0,0,0 +"768.546691894531",3.04687673535279,0,0,0,0,0,0,0,0 +"768.794982910156",3.08902630949227,0,0,2.50490336765556,0,0,0,0,0 +"769.126098632812",2.84036018857301,0,0,2.4005670019655,0,5.24065801192246,0,0,0 +"769.407592773438",3.03736989909013,3.68700324933663,0,3.63554102592062,0,3.54783602572029,0,0,0 +"769.622863769531",0,0,3.23171463883697,0,0,0,0,0,0 +"770.020385742188",3.17813020026226,0,4.63182596542495,2.82649219010843,0,2.90407460870667,0,0,0 +"770.20263671875",2.63946518914848,2.6762090896361,0,0,0,0,0,0,0 +"770.484313964844",0,0,0,2.65956401847156,0,0,0,4.47997758007662,3.03953768630317 +"770.931823730469",2.23762688287259,2.80991559588664,0,0,0,0,0,0,0 +"771.197082519531",0,0,0,0,0,0,0,0,0 +"771.279968261719",0,0,0,0,0,5.0911793089005,0,0,0 +"771.379455566406",0,0,3.23171463883697,4.0111419289376,0,0,0,0,0 +"771.561828613281",0,1.9875661496122,0,2.69700965194097,0,6.36278071324653,0,0,0 +"771.794006347656",0,0,0,2.69700965194097,0,0,0,0,0 +"771.91015625",0,2.15404700566244,0,0,0,0,0,0,0 +"771.993041992188",0,2.86811573333811,3.13922885661121,0,0,0,0,0,0 +"772.308288574219",2.86590381897501,0,2.93225732669478,3.93916200845629,0,0,0,0,0 +"772.756286621094",2.92511906364379,3.55728150632238,0,2.33076492328735,0,0,0,0,0 +"773.038452148438",3.13598062612277,2.91474971991865,4.85717725452203,2.84337110912406,0,0,0,0,0 +"773.353881835938",4.77889879821907,0,0,0,0,0,0,0,0 +"773.470092773438",2.0297965400721,3.86734374216771,3.83613061317995,0,0,0,0,0,0 +"773.685913085938",2.40698723075851,0,0,0,0,0,0,0,0 +"773.91845703125",3.72437112257054,3.62932594484554,0,0,0,0,0,0,0 +"774.101135253906",2.50796374099537,0,0,0,0,0,0,0,0 +"774.317077636719",0,0,0,2.40165592286708,0,0,0,0,0 +"774.483215332031",1.81117043364399,0,0,0,0,0,0,0,0 +"774.666015625",1.73677246406477,1.99963979773436,2.71978444671975,0,0,0,0,0,0 +"774.915283203125",0,0,0,0,0,0,0,0,0 +"775.048217773438",3.30554668369118,0,0,0,0,0,0,0,0 +"775.197814941406",0,0,0,0,0,0,0,0,0 +"775.330810546875",1.66262247772919,0,0,2.40165592286708,3.29946298826586,0,0,0,0 +"775.513671875",1.96192852836957,0,3.23171463883697,0,0,0,0,0,0 +"775.779663085938",0,2.56843586828855,0,0,0,0,0,0,0 +"776.029113769531",0,0,0,0,0,0,0,0,0 +"776.12890625",3.2899213089168,0,0,0,0,0,0,0,0 +"776.328491210938",0,2.05783993518582,0,0,0,2.77406150616558,0,0,0 +"776.544799804688",0,2.69868044426318,0,0,0,0,0,0,0 +"776.794311523438",2.47617507234744,2.05783993518582,0,0,0,0,0,0,0 +"777.027282714844",5.64910618768159,2.27221793351491,3.10435048202426,0,0,0,0,0,0 +"777.260314941406",0,2.27221793351491,0,2.94770747481412,0,3.67784912826138,0,0,0 +"777.476684570312",0,0,0,0,0,0,0,0,0 +"777.676452636719",2.30292943555411,2.37999115486246,0,0,0,0,0,0,0 +"777.959533691406",1.91366041571835,0,0,3.14699209165973,0,0,0,0,0 +"778.109375",0,0,0,0,0,0,0,0,3.76804048730557 +"778.359191894531",0,0,0,0,0,0,0,0,0 +"778.525756835938",0,0,0,0,0,0,0,0,0 +"778.592407226562",0,0,0,2.84337110912406,0,0,0,0,0 +"778.709045410156",0,0,0,0,0,0,0,0,0 +"778.792297363281",0,0,0,0,0,0,0,0,0 +"779.308898925781",3.23695110249394,0,0,3.12184591918233,0,0,0,5.3602668895747,0 +"779.642211914062",1.68552747302759,0,0,0,0,0,0,0,0 +"779.825622558594",2.64640656639013,0,0,2.32967600238577,0,0,0,0,0 +"780.092407226562",4.83667374713294,0,0,0,0,0,0,0,0 +"780.475952148438",0,0,4.85717725452202,0,0,0,0,0,0 +"780.692749023438",4.14198617201077,0,3.40380779416645,0,0,0,0,0,0 +"780.942993164062",4.58230050706691,0,0,0,0,0,0,0,0 +"781.093139648438",0,3.57281708472045,0,0,0,0,0,0,0 +"781.326782226562",0,2.61402418894833,0,0,0,2.92354020918754,0,0,3.14445788680073 +"781.67724609375",2.1753132763084,0,4.16027549795328,5.3493633976812,0,0,0,0,0 +"781.994445800781",2.52332906479474,6.19136420557461,0,0,0,0,0,5.75464885181818,0 +"782.211486816406",0,0,0,0,0,0,0,0,0 +"782.278259277344",0,0,0,0,0,0,0,0,0 +"782.478637695312",0,0,0,0,0,0,0,0,0 +"782.795959472656",2.12542435485309,0,0,0,0,0,0,0,0 +"783.029846191406",3.61282799715964,0,0,0,0,0,0,0,0 +"783.263732910156",2.49002089044362,0,0,0,0,0,0,0,0 +"783.63134765625",2.27072934754123,3.04447146293289,0,2.57579436723529,0,0,0,4.2347853540093,0 +"783.965637207031",2.76076916793136,0,0,0,0,0,0,0,0 +"784.06591796875",0,2.52230937895924,0,2.81822493664666,0,0,0,0,0 +"784.266540527344",2.66413767339371,0,2.93308816004727,0,0,3.0188278666961,0,0,0 +"784.467224121094",1.65201358899399,0,0,0,0,0,0,0,0 +"784.801635742188",0,0,0,0,0,0,0,0,0 +"784.968933105469",3.03914342190265,0,0,0,0,0,0,0,0 +"785.3369140625",0,0,0,0,0,0,0,0,0 +"785.454040527344",2.17687505557275,3.51064751974184,0,2.32967600238577,0,0,0,0,0 +"785.905883789062",2.16757392899258,0,0,0,0,0,0,0,0 +"785.972839355469",3.21876026869856,2.99888314227311,0,0,0,0,0,0,0 +"786.3076171875",0,3.39130814752337,0,0,0,0,0,0,2.7520962455629 +"786.625732421875",0,0,3.19681189428942,0,0,0,0,0,0 +"787.044372558594",5.55248072700963,0,0,2.37650975038968,0,0,0,0,0 +"787.362609863281",2.27983079830461,1.97150773825375,0,0,0,5.60847179417268,0,0,0 +"787.530151367188",2.06963467229991,0,0,3.54777110732526,0,0,0,0,0 +"787.764709472656",3.60802928853431,0,0,0,0,0,0,0,0 +"787.882019042969",2.33603190022275,0,0,2.53004954013296,0,0,0,4.99290410599865,0 +"788.166931152344",2.33128149902427,0,4.47894340262861,0,0,0,0,0,0 +"788.619506835938",0,0,3.09801829861317,3.25132845734979,0,0,0,0,0 +"788.954833984375",0,3.08020024575728,0,0,0,0,0,0,0 +"789.055480957031",5.13378278786447,0,0,0,0,0,0,0,0 +"789.139343261719",2.60202374264632,0,0,0,0,0,0,0,0 +"789.575439453125",3.0462112988785,2.72630500649255,0,3.93916200845629,0,0,0,0,0 +"789.776733398438",2.25081329836017,0,0,0,0,3.09008437779639,0,0,0 +"789.994873046875",5.12509879033173,0,0,0,0,3.40190149349798,0,0,0 +"790.330505371094",0,0,0,0,0,0,0,0,2.64661965059505 +"790.464782714844",0,0,3.70243427295615,3.05204384050417,0,0,0,0,0 +"790.582275390625",2.8849487219993,0,0,0,0,0,0,4.46537692221359,0 +"790.699768066406",0,0,3.63546689671401,0,0,0,0,0,0 +"790.918029785156",2.49865658054951,0,0,3.66898639203094,0,7.7181622469381,0,0,0 +"791.119506835938",3.50533359677747,0,2.79939181982347,0,0,0,0,0,0 +"791.304260253906",3.01963879208655,2.76034251199056,0,0,0,0,0,0,0 +"791.690551757812",0,0,0,0,0,0,0,0,0 +"791.757751464844",1.75946571581501,3.687526082297,0,0,0,0,0,0,0 +"791.959350585938",1.62497532154455,3.92554387961918,0,0,0,0,0,0,0 +"792.211364746094",0,0,0,0,0,0,0,0,0 +"792.446655273438",0,1.9495438808779,0,0,0,0,0,0,0 +"792.597900390625",1.96192249450388,3.10214876742398,0,0,0,0,0,0,0 +"792.917297363281",2.62649051720907,2.6762090896361,0,0,0,0,0,0,0 +"793.085388183594",0,0,0,0,0,0,0,0,0 +"793.152648925781",0,0,0,0,0,0,0,0,0 +"793.253540039062",2.98178592621943,0,0,0,0,0,0,0,0 +"793.421691894531",1.70325858003117,0,0,0,0,2.72227059554616,0,0,0 +"793.707580566406",2.79836801668916,0,2.7069060375977,2.94770747481412,0,0,0,0,0 +"793.993530273438",4.14157475264581,2.8560267495068,0,0,0,0,0,0,0 +"794.2626953125",0,2.80645366561072,0,0,0,0,0,0,0 +"794.414184570312",2.17687505557275,0,0,0,0,0,0,0,0 +"794.464660644531",1.79731858168213,2.48430244593409,0,0,0,0,0,0,0 +"794.700256347656",1.78393249037776,0,0,0,0,0,0,0,0 +"794.935852050781",0,0,0,0,0,0,0,0,0 +"795.036865234375",5.43176297475276,2.91821165019456,3.53750413439025,4.48521356040333,0,0,0,4.33597297043127,0 +"795.356750488281",0,0,0,2.62611865236124,0,0,0,0,0 +"795.424072265625",3.03736989909013,0,0,0,0,0,0,0,0 +"795.541931152344",0,3.53311887436892,0,0,0,0,0,0,0 +"795.794555664062",2.77117838084977,0,0,0,0,0,0,0,0 +"795.962951660156",2.28689867528046,0,0,0,0,4.54075356899652,0,0,0 +"796.131408691406",2.10095758029034,3.04499429589327,3.70243427295615,0,0,0,0,4.45776791920975,0 +"796.400939941406",0,2.05731710222545,0,0,0,0,0,0,0 +"796.569458007812",1.74607359064495,0,0,2.53004954013296,0,0,0,0,0 +"796.822204589844",0,0,0,0,0,0,0,0,0 +"796.872741699219",0,0,0,0,0,0,0,0,0 +"797.176147460938",5.15755289545395,4.14109032231427,0,2.74733393706692,0,5.58981413818507,0,5.25305820005601,0 +"797.614440917969",3.96039612658555,0,3.23171463883697,0,0,3.8382355605421,0,0,4.33405512209053 +"798.002319335938",4.87254738050507,0,3.47625215050659,0,0,0,0,0,0 +"798.457702636719",0,0,0,0,0,0,0,0,0 +"798.50830078125",0,4.2086425003499,0,2.92256130233671,0,0,0,0,0 +"798.727661132812",2.08757148898597,0,2.62729866449399,3.4182885691578,0,0,0,4.3111478822594,0 +"799.065124511719",0,0,0,0,0,0,0,0,0 +"799.335205078125",2.21275472281056,2.91474971991865,4.93678462762574,0,0,0,0,0,0 +"799.655883789062",0,0,0,0,0,0,0,0,0 +"799.774108886719",0,0,0,0,0,0,0,0,0 +"799.841613769531",3.52912890100025,0,0,2.69700965194097,0,0,0,0,0 +"800.179321289062",1.98937218131829,3.04447146293289,0,0,0,0,0,9.27050645323132,0 +"800.466491699219",2.05380358784304,0,2.7069060375977,3.3894226610711,0,0,0,0,0 +"800.635375976562",4.0059883397685,0,3.55669035696279,0,0,3.20143982434986,0,0,0 +"800.871887207031",0,0,3.76283105352672,0,0,0,0,6.85999954108318,0 +"801.176025390625",2.67752979856377,0,0,0,0,0,0,0,0 +"801.429504394531",2.50382443497864,3.47491873691745,0,0,0,0,0,0,2.77858694038695 +"801.835205078125",0,3.49908136887091,0,0,0,0,0,0,0 +"801.987365722656",0,0,0,3.14699209165973,0,0,0,0,0 +"802.17333984375",3.09424247134825,0,0,0,0,0,0,0,0 +"802.427001953125",1.94655717070451,0,0,0,0,0,0,0,0 +"802.782165527344",1.78781174541947,0,2.90756975406364,0,0,5.45980103564398,0,0,0 +"803.002075195312",0,0,2.85348078694355,0,0,0,0,4.32089582651214,0 +"803.154357910156",0,0,0,2.60094053971269,0,0,0,0,0 +"803.323547363281",2.28867219809297,0,0,0,0,3.05274536723537,0,0,0 +"803.526611328125",0,2.51023573083709,0,0,0,0,0,0,0 +"803.780456542969",0,0,0,3.12293484008391,0,3.51130495965253,0,0,0 +"803.966674804688",0,0,0,0,0,0,0,0,0 +"804.152893066406",0,4.2834238821202,0,0,0,0,0,0,0 +"804.457641601562",2.01185972338604,3.29510107704675,0,0,0,0,0,0,3.35105919597068 +"804.830200195312",2.73353122466512,2.30625543901292,5.84063354415031,2.81822493664666,0,5.69760171535312,0,0,0 +"805.101257324219",4.20232657994564,0,0,0,0,0,0,0,0 +"805.28759765625",0,0,0,2.55522765278151,0,0,0,0,0 +"805.355346679688",2.63553159281423,0,0,0,0,0,0,0,0 +"805.5078125",0,0,2.85264995359107,0,0,0,0,0,0 +"805.931457519531",2.67318478286456,0,0,2.62611865236124,0,0,0,0,0 +"806.050109863281",0,3.41045568602893,0,0,0,0,0,0,0 +"806.15185546875",3.47202542242636,0,0,0,0,0,0,0,0 +"806.253540039062",2.01838364739704,2.05783993518582,5.56038682454126,0,0,0,0,0,0 +"806.456970214844",1.79100036735361,0,0,0,0,3.54783602572029,0,0,0 +"806.745239257812",0,3.05654511105505,0,0,0,0,0,0,0 +"807.084411621094",2.48547619892762,0,0,2.37650975038968,0,0,0,0,0 +"807.474548339844",0,0,0,0,0,0,0,0,0 +"807.59326171875",0,0,0,0,0,0,0,0,0 +"807.678100585938",0,0,4.89474323627521,0,0,0,0,0,0 +"807.86474609375",2.94868346155079,0,0,0,0,0,0,0,0 +"808.051452636719",2.89268203544944,0,0,6.79083231121327,0,0,0,0,0 +"808.407836914062",2.19977401700547,0,0,0,0,0,0,0,0 +"808.662475585938",0,3.58092130531546,3.00553251638741,0,0,0,0,0,0 +"808.900207519531",0,0,0,0,0,0,0,0,0 +"808.968078613281",0,0,0,2.40165592286708,0,0,0,0,0 +"809.137878417969",2.1167886647472,0,0,0,0,0,0,0,0 +"809.290771484375",1.70279885323937,0,3.25092523137011,0,0,0,0,0,0 +"809.613464355469",0,2.81854264944203,2.72611663013084,0,0,0,0,0,0 +"809.953247070312",4.04582043813062,5.52877390886698,0,0,0,7.00314431882419,0,0,0 +"810.089172363281",0,0,0,0,0,2.7927191621532,0,0,0 +"810.276123046875",2.16171544145586,0,2.64650925702713,0,0,0,0,0,0 +"810.412048339844",0,0,0,0,0,4.36168578214241,0,0,0 +"810.463073730469",3.66836969646919,2.96432280381473,0,0,0,0,0,0,0 +"810.632995605469",2.71103764873168,0,0,0,0,0,0,0,0 +"810.836975097656",0,5.05620024449856,0,0,0,0,0,0,0 +"811.041015625",4.09462646988099,0,3.62830387995044,0,0,0,0,0,0 +"811.313049316406",0,0,0,0,0,0,0,0,0 +"811.500122070312",0,0,0,0,0,0,0,0,0 +"811.551147460938",0,0,0,3.05095491960259,0,0,0,0,0 +"811.755249023438",2.61263866524721,0,0,0,0,0,0,0,0 +"811.857299804688",2.03606644697377,2.91422688695827,0,0,0,4.11772736610514,0,5.19516406291351,0 +"812.112487792969",1.78760603573699,0,0,0,0,0,0,0,0 +"812.656982421875",0,0,0,2.33076492328735,0,0,0,0,0 +"812.793151855469",3.85723467417121,0,0,2.69700965194097,0,0,0,0,0 +"812.997436523438",0,0,0,0,0,4.7233418280645,0,0,0 +"813.201721191406",2.04061717235547,0,0,0,0,0,0,0,0 +"813.47412109375",0,2.52232471466839,0,0,0,0,0,0,0 +"813.814697265625",3.24797744445979,0,0,0,0,0,0,0,0 +"814.070190429688",0,2.77241616011272,0,2.62611865236124,0,0,0,0,3.33837864967917 +"814.359802246094",2.84986702483566,0,0,0,0,0,0,0,0 +"814.700561523438",0,0,0,0,0,0,0,0,0 +"814.785766601562",0,2.42610230848262,0,0,0,0,0,0,0 +"814.870971679688",0,0,0,0,0,0,0,0,0 +"814.990295410156",0,0,0,0,0,0,0,0,0 +"815.058471679688",2.9951720175238,0,0,0,0,0,0,0,0 +"815.160705566406",1.88621676276964,0,0,0,0,0,0,0,0 +"815.535766601562",1.74607359064495,0,0,0,0,0,0,96.3181421233144,0 +"815.910888671875",2.79407130841679,0,0,0,0,0,0,0,0 +"816.26904296875",2.74758275244378,2.90267607179649,2.98634629381487,0,0,0,0,84.7671388703057,0 +"816.712585449219",0,3.86452742329741,0,0,0,7.63699568312105,0,5.03884180978961,0 +"816.985595703125",2.52808549985891,0,0,2.74733393706692,0,0,0,58.3854404812072,0 +"817.719482421875",0,0,2.85264995359107,0,0,2.77406150616558,0,17.7720347663695,0 +"818.129272460938",3.19066825620342,0,2.79939181982347,2.82649219010843,0,0,0,0,0 +"818.231750488281",2.10591972503699,0,0,0,0,0,0,0,0 +"818.522094726562",0,0,0,0,0,0,0,8.76940668612849,0 +"818.641662597656",1.97598005614823,0,0,0,0,3.29135399143776,0,6.77843748769902,0 +"819.034545898438",3.04233204383678,4.17512782781227,0,0,0,0,0,4.64604777745325,0 +"819.325012207031",2.64871800830181,3.95905855215681,0,0,0,0,0,0,0 +"819.530090332031",0,0,3.60994849073039,0,0,0,0,0,3.58794668626014 +"819.701049804688",0,0,2.70057385418661,0,0,0,0,5.03570670061878,0 +"819.940368652344",0,0,0,0,0,0,0,0,0 +"820.025817871094",0,0,3.40297696081396,0,0,0,0,0,0 +"820.19677734375",2.84552804300214,0,3.53667330103776,2.37650975038968,0,0,0,0,0 +"820.675598144531",2.39637230815763,2.27169510055454,3.30498982852959,2.69700965194097,0,0,0,0,0 +"820.93212890625",0,0,0,0,0,0,0,0,0 +"821.000549316406",0,0,0,0,0,0,0,0,0 +"821.069030761719",3.38424136154276,0,0,0,0,0,0,0,0 +"821.291381835938",0,0,0,0,0,0,0,0,0 +"821.530944824219",0,0,3.74000025470934,0,0,0,0,0,0 +"821.821899414062",0,3.31874087603983,0,0,0,0,0,0,0 +"822.044372558594",2.26032013462282,0,0,0,0,0,0,0,0 +"822.232666015625",0,0,0,0,0,0,0,0,0 +"822.301147460938",1.83972217293094,0,0,0,0,0,0,0,2.72366429586993 +"822.403869628906",0,0,0,0,0,0,0,0,0 +"822.592224121094",1.95783752977969,0,0,2.37650975038968,0,0,0,0,3.15389934126707 +"822.951843261719",3.0421263341543,2.91474971991865,0,0,0,0,0,0,0 +"823.294372558594",0,0,5.40750426174492,0,0,3.22009748033748,0,0,0 +"823.499938964844",2.65938123832954,0,0,0,0,0,0,4.26674295912891,0 +"823.70556640625",2.73650810305109,0,0,0,0,0,0,0,0 +"823.996887207031",0,2.7960559591058,4.63099513207246,0,0,0,0,4.34260020411642,0 +"824.459655761719",2.02722504718541,2.85654958246718,0,0,0,4.09906971011752,0,0,0 +"824.768249511719",2.06508394691822,0,0,0,0,0,0,0,0 +"824.973999023438",0,2.03367730323236,2.66569547959966,0,0,0,0,0,0 +"825.196899414062",3.77718392673776,0,0,0,0,0,0,0,0 +"825.265502929688",1.84270508518259,3.10665636362066,0,2.40165592286708,0,0,0,0,0 +"825.454162597656",2.51382222853208,0,0,2.57579436723529,0,0,0,0,0 +"825.728637695312",2.86822129475237,0,0,0,0,0,0,6.25200734916174,0 +"825.95166015625",2.47141863728327,0,5.76735835445768,3.25132845734979,0,0,0,0,0 +"826.414978027344",0,2.32937240504562,2.7069060375977,0,0,0,0,4.65738365161311,0 +"826.603820800781",2.49588541184602,0,0,0,0,3.64051011770037,0,0,0 +"826.9814453125",2.98430307781358,4.36357254123837,0,0,0,0,0,0,0 +"827.1875",0,0,4.7839020648294,2.55522765278151,0,0,0,0,0 +"827.273376464844",0,0,5.65204177341453,2.65126482483864,0,0,0,7.28100990877988,0 +"827.530944824219",2.24217760825428,2.29585773250799,0,2.94661855391254,0,0,0,0,0 +"827.737060546875",2.59292832574863,0,0,0,0,2.92273226469429,0,0,0 +"827.9775390625",0,3.54520785820022,0,0,0,0,0,4.36793057555088,0 +"828.235229492188",2.63987660851344,2.75981967903018,5.10088393283915,0,0,0,0,0,0 +"828.510131835938",2.10545999824518,0,0,0,0,0,0,0,0 +"828.767944335938",0,0,0,0,0,0,0,0,0 +"829.111694335938",2.26420542353022,0,0,0,0,0,0,0,0 +"829.369567871094",2.83966352159974,0,0,0,0,0,0,0,0 +"829.558715820312",2.59706159789967,0,0,2.33076492328735,0,0,0,0,0 +"829.885437011719",0,2.05783993518582,0,0,0,0,0,0,0 +"829.954223632812",0,0,3.90940580287258,0,0,0,0,0,0 +"830.074645996094",0,0,0,0,0,0,0,0,0 +"830.16064453125",2.26466515032203,0,0,0,0,0,0,0,0 +"830.401489257812",0,3.20286343409727,0,0,0,4.04647085500485,0,0,0 +"830.642333984375",1.91522822884839,0,4.83879749534137,0,0,3.14268323290905,0,0,0 +"830.831604003906",1.74586788096247,0,0,0,0,4.46688349236775,0,0,0 +"831.020935058594",2.37368509027308,0,0,2.53004954013296,0,0,0,0,0 +"831.279113769531",2.31591014135921,0,4.16110633130577,0,0,0,0,0,0 +"831.606201171875",0,2.05783993518582,0,0,0,3.93171759701542,0,51.710779685195,0 +"831.830017089844",2.26597894634274,0,0,0,0,0,0,0,0 +"831.9677734375",4.0125122637795,2.91474971991865,0,0,0,0,0,0,0 +"832.312194824219",2.61520412426821,1.99963979773436,0,3.73987739161068,0,0,0,57.4000518603522,0 +"832.484436035156",2.04020575299051,0,4.75919012223766,0,0,0,0,14.2916268945903,0 +"832.811767578125",5.87400823487706,0,0,0,0,2.77486945065883,0,6.08691892110379,0 +"833.070190429688",3.55657858781465,0,0,0,0,0,0,24.4405184627125,0 +"833.294250488281",2.10545999824518,0,0,0,0,0,0,0,0 +"833.707885742188",0,0,4.7838776948688,0,0,0,0,0,0 +"833.811340332031",0,0,0,0,0,0,0,5.02909386553687,0 +"833.897521972656",2.25258682117268,0,3.51464896561226,0,0,0,0,0,0 +"834.259582519531",3.10763459651831,0,0,0,0,0,0,0,0 +"834.552734375",2.45257944394146,0,0,0,0,5.40720218053131,0,6.0214301795607,0 +"834.966735839844",4.71881240739353,0,0,0,0,0,0,4.50107579709247,0 +"835.156494140625",2.73311377143448,0,0,2.33076492328735,0,8.6390153346208,0,0,0 +"835.449829101562",1.67602063676494,2.51023573083709,4.61261537289181,0,0,4.87203628517898,0,0,0 +"835.656921386719",0,2.43766845935355,0,2.4005670019655,0,2.94141361926768,0,0,0 +"835.915832519531",1.66106069846484,0,0,0,0,2.94141361926768,0,6.95959922759803,0 +"836.485534667969",0,0,6.99537652571618,0,0,0,0,0,2.60930264090603 +"836.813598632812",0,0,4.70510115511757,0,0,0,0,0,0 +"837.038146972656",5.01810639030253,0,3.31132201194068,0,0,0,0,7.70734947614297,0 +"837.40087890625",5.25251527376065,0,0,3.54777110732526,0,0,0,0,0 +"837.590942382812",2.64442733389514,0,0,0,0,0,8.19469563938609,0,0 +"837.832824707031",0,0,3.78204164605986,0,0,0,0,4.55571954913504,0 +"838.092102050781",4.09917116139699,0,0,0,0,0,18.0147540424311,0,0 +"838.299499511719",0,0,0,0,0,0,0,0,0 +"838.36865234375",3.22785568559625,0,3.15843944914435,0,0,0,0,0,0 +"838.576110839844",0,0,5.61447579166134,0,0,0,14.4970314585467,0,0 +"838.852722167969",1.68077103796342,4.1746049948519,0,0,0,0,0,0,0 +"839.060241699219",2.85911984398899,2.04575095135452,0,2.50490336765556,0,0,18.5366981794829,0,0 +"839.509887695312",0,2.96033804057843,0,2.65126482483864,0,0,7.75545033070315,0,0 +"839.786682128906",2.2328764816741,0,0,2.50490336765556,0,0,0,0,0 +"840.115417480469",3.59621101035998,0,3.98901317597629,0,0,0,0,0,0 +"840.357727050781",0,0,0,0,0,0,0,0,0 +"840.651977539062",1.67126420170077,3.42534565302137,0,0,0,0,0,0,0 +"840.980895996094",4.96796948560358,2.83061629756418,0,0,0,4.06432056649922,0,4.01082101949016,0 +"841.223266601562",2.14356688122163,2.37999115486246,0,0,0,4.41428463725508,0,0,3.17797941019431 +"841.569641113281",3.17838421737159,0,0,0,0,0,0,0,0 +"841.846740722656",2.19956830732299,0,0,0,0,0,0,5.24219881195225,0 +"842.054626464844",0,3.77113667169109,0,0,0,0,0,0,0 +"842.106567382812",2.26597894634274,0,0,0,0,0,0,0,0 +"842.245178222656",0,0,0,0,0,4.28427153471399,0,0,0 +"842.505126953125",3.16751527766137,2.53439836279054,0,0,0,0,0,0,0 +"842.695739746094",0,0,0,0,0,0,0,4.71527778875562,0 +"842.921020507812",2.08777719866845,5.1639734658461,0,2.53004954013296,0,3.22009748033748,0,0,2.79126748667846 +"843.267761230469",0,0,0,0,0,0,0,32.8854946344174,0 +"843.579833984375",0,0,0,0,0,0,0,0,0 +"843.6318359375",0,0,0,0,0,0,0,0,0 +"843.753234863281",1.78195325788276,3.26812212622299,0,0,0,0,0,5.77574706883403,0 +"843.978698730469",0,2.48828720917038,0,0,0,0,0,14.6782989765041,0 +"844.186828613281",0,0,0,2.53004954013296,0,0,0,0,0 +"844.360290527344",0,0,0,2.62611865236124,0,5.12771037496827,0,0,0 +"844.742004394531",0,2.83996833814835,0,0,0,0,0,4.02168040759392,0 +"844.9501953125",3.9184039547017,2.80593083265035,0,2.43401236807582,0,0,0,0,0 +"845.557739257812",0,2.02160365511021,7.11257425053369,0,0,0,0,7.25942080710469,0 +"846.095947265625",2.55532344312515,0,0,0,0,0,0,0,0 +"846.286987304688",3.08452992540311,0,0,0,0,0,0,0,0 +"846.3564453125",2.05875969872401,4.15370213910595,0,0,0,3.7552633756898,0,0,0 +"846.617004394531",1.85787073316517,3.653488576799,4.14192010873323,2.72215582441838,0,0,0,0,0 +"846.877624511719",1.68056532828094,3.18680502273883,0,0,0,0,0,0,0 +"847.051330566406",2.4326633947604,2.23765759505653,0,0,0,0,0,0,0 +"847.451049804688",0,3.87544796276272,7.99992455165196,0,0,0,0,0,0 +"847.711730957031",0,0,4.59342915031927,0,0,0,0,8.53459736210884,0 +"847.972473144531",0,0,0,0,0,0,0,0,3.4059818404877 +"848.181091308594",2.93786282926742,0,0,0,0,0,0,4.18725972031121,0 +"848.407165527344",0,0,0,2.33076492328735,0,0,0,18.0253124814968,0 +"848.685424804688",3.42597951631729,0,5.48077945143754,0,0,0,0,0,0 +"848.946350097656",2.03653220763127,0,0,2.55522765278151,0,0,0,0,0 +"849.346435546875",0,0,0,0,0,3.43924050405899,0,5.89440690844167,0 +"849.9033203125",3.60761786916935,0,0,0,0,0,0,11.9740924352719,0 +"850.268859863281",2.64871800830181,0,0,0,0,0,0,4.58214696581728,0 +"850.512573242188",0,0,3.15843944914435,0,0,0,0,0,0 +"851.000122070312",0,0,0,0,0,0,0,0,0 +"851.052429199219",3.45044025701435,0,0,0,0,5.15252576728402,0,0,0 +"851.191711425781",2.4856819086101,3.10267160038436,0,0,0,3.2852199536954,0,0,0 +"851.383361816406",2.4856819086101,1.9754771657809,0,3.54777110732526,0,0,0,6.83406300906029,0 +"851.784057617188",0,0,0,0,0,0,0,3.9994851453303,0 +"852.237121582031",2.56846155118588,0,7.46609615983536,0,0,0,0,0,0 +"852.498596191406",0,3.98322118411026,0,0,0,0,0,0,0 +"852.638000488281",1.87303034728206,3.15276751724082,3.78204164605986,3.93916200845629,0,0,0,0,0 +"852.882080078125",0,0,0,0,0,2.92354020918754,0,0,0 +"853.09130859375",0,2.37999115486246,4.70510115511757,0,0,0,0,0,2.90814360428202 +"853.597106933594",2.33425837741023,0,0,2.40165592286708,0,2.72146265105291,0,0,0 +"853.998291015625",2.34466759032864,2.30625543901292,4.51382177721556,2.84337110912406,0,0,0,0,0 +"854.225158691406",0,2.6762090896361,0,0,0,0,0,0,0 +"854.399658203125",3.16362998875397,0,0,0,0,0,0,0,0 +"854.539245605469",0,0,0,0,0,3.73044798337405,0,0,0 +"854.801025390625",2.48547619892762,2.17601086303829,0,0,0,0,0,0,0 +"854.993041992188",3.15841986076368,0,0,3.73987739161068,0,0,0,0,0 +"855.202575683594",0,0,0,0,0,0,0,0,0 +"855.324768066406",3.54753147834381,0,0,0,0,0,0,0,0 +"855.656555175781",0,0,0,0,0,0,0,0,0 +"855.883605957031",0,0,7.14195127506203,2.92256130233671,0,0,0,0,0 +"856.07568359375",5.45209647716447,0,0,2.40165592286708,0,0,0,0,0 +"856.267883300781",0,0,5.40750426174492,0,0,0,0,0,0 +"856.687194824219",2.29342259929146,3.69909223316793,3.00553251638741,0,0,0,0,0,0 +"856.949340820312",4.48844621509844,3.97113220027896,0,0,0,0,0,0,0 +"857.176513671875",0,1.9495438808779,0,3.12293484008391,0,0,0,0,0 +"857.561096191406",0,0,0,0,0,0,0,0,0 +"857.735961914062",0,0,0,0,0,0,0,0,0 +"857.823364257812",0,2.25962145243238,0,0,0,0,0,0,0 +"857.910827636719",0,2.329895238006,0,0,0,0,0,0,0 +"858.2255859375",0,0,0,0,0,0,0,0,0 +"858.540405273438",0,0,0,0,0,0,0,0,0 +"858.750366210938",1.84856357271931,0,0,0,0,0,0,0,0 +"859.135314941406",0,0,0,3.24306120388801,0,0,0,0,0 +"859.222778320312",2.33562048085779,0,6.12193057418123,2.94770747481412,0,0,0,4.76833361089108,0 +"859.555297851562",0,0,5.61447579166135,0,0,3.14268323290905,0,0,0 +"859.782897949219",0,0,0,0,0,0,0,0,0 +"860.080505371094",3.68353534445177,0,0,0,0,0,0,0,0 +"860.378173828125",3.92382582624016,0,0,0,0,0,0,0,0 +"860.851013183594",3.49739457364486,2.72630500649255,0,0,0,0,0,8.73211988134249,0 +"861.253967285156",0,0,0,0,0,0,0,0,0 +"861.446716308594",0,0,0,0,0,0,0,0,0 +"861.656982421875",0,0,0,0,0,0,0,0,0 +"861.867309570312",0,0,0,2.4257131744429,0,0,0,0,0 +"862.042541503906",0,0,0,0,0,0,0,0,0 +"862.340576171875",0,0,0,0,0,0,0,0,0 +"862.515930175781",0,0,0,0,0,0,0,0,0 +"862.901672363281",0,0,0,0,0,0,0,0,0 +"862.989379882812",4.30052588761333,0,0,0,0,0,0,0,0 +"863.112121582031",0,0,0,2.55522765278151,0,0,0,0,0 +"863.392761230469",0,0,0,0,0,3.87911874190275,0,0,0 +"863.585754394531",0,0,0,3.63554102592062,0,0,0,0,0 +"863.848937988281",0,0,4.83879749534137,0,0,0,0,0,0 +"864.077087402344",0,0,0,0,0,0,0,0,0 +"864.235046386719",0,0,0,0,0,0,0,0,0 +"864.498291015625",0,0,0,0,0,0,0,0,0 +"864.621154785156",0,0,0,0,0,0,0,0,0 +"864.902099609375",0,0,0,0,0,0,0,0,0 +"864.954772949219",0,0,0,0,0,0,0,0,0 +"865.11279296875",0,0,0,0,0,0,0,0,0 +"865.428894042969",0,6.20985079696539,3.5558595236103,0,0,0,0,0,0 +"865.6220703125",0,0,0,0,0,0,0,0,0 +"865.868041992188",5.91388864066602,0,4.34441622905232,3.49375902676115,0,0,0,0,0 +"866.096374511719",4.08169407150274,2.87568178526359,0,0,0,0,0,0,0 +"866.377563476562",0,0,0,0,0,2.9761390643002,0,0,0 +"866.553283691406",0,0,0,0,0,0,0,0,0 +"866.74658203125",0,0,0,0,0,0,0,0,0 +"866.95751953125",0,0,0,0,0,0,0,0,0 +"867.02783203125",3.21896597838104,0,0,0,0,0,0,0,0 +"867.221252441406",0,0,0,0,0,0,0,0,0 +"867.502563476562",0,0,0,0,0,0,0,0,0 +"867.625610351562",0,0,0,0,0,0,0,0,0 +"868.047729492188",3.54748317091696,3.64089209571647,0,0,0,0,0,0,0 +"868.346801757812",0,0,0,0,0,0,0,0,0 +"868.452331542969",0,0,0,0,0,0,0,0,0 +"868.522705078125",0,0,0,0,0,0,0,0,0 +"868.681091308594",0,0,0,0,0,0,0,0,0 +"868.78662109375",0,0,0,0,0,0,0,0,0 +"868.980224609375",7.7987432999881,3.73709916619308,0,0,0,0,0,0,0 +"869.279418945312",0,0,3.61077932408287,0,0,0,0,0,5.78025122253081 +"869.649108886719",3.78512294987038,0,0,0,0,0,0,0,0 +"869.807556152344",0,0,4.31315806074962,0,0,0,0,0,0 +"870.10693359375",0,0,0,0,0,0,0,0,0 +"870.247802734375",0,2.90267607179649,0,0,0,0,0,0,0 +"870.476806640625",0,3.19887867086098,0,0,0,0,0,0,0 +"870.899536132812",5.18345996577161,0,4.7839020648294,0,0,3.23181315408948,0,0,0 +"871.199096679688",0,0,0,0,0,0,0,0,0 +"871.657348632812",3.1247002670476,0,4.81961127276884,0,0,0,0,0,0 +"871.974609375",4.53514048075393,2.70972376217373,0,0,0,0,0,0,0 +"872.115661621094",4.42809977329788,0,0,0,0,0,0,0,0 +"872.415405273438",0,0,0,0,0,0,0,0,0 +"872.644653320312",0,0,0,0,0,0,0,0,0 +"872.962158203125",0,0,0,0,0,0,0,0,0 +"873.367858886719",0,0,0,0,0,0,0,0,0 +"873.491394042969",0,0,0,0,0,4.09906971011752,0,0,0 +"873.57958984375",0,5.01008909087839,0,0,0,0,0,0,0 +"873.756103515625",0,0,5.36360609658064,0,0,0,0,0,0 +"873.967834472656",3.20148888848678,0,0,0,0,0,0,0,0 +"874.161987304688",0,0,0,0,0,0,0,0,0 +"874.550354003906",0,0,8.75722308879128,2.65126482483864,0,0,0,0,0 +"874.903503417969",0,0,6.03110645866044,0,0,0,0,0,0 +"875.186096191406",0,0,0,0,0,0,0,0,0 +"875.433349609375",0,0,0,0,0,0,0,0,0 +"875.733703613281",0,0,0,2.84337110912406,0,0,0,0,0 +"875.96337890625",0,0,0,0,0,0,0,0,0 +"876.352111816406",0,0,0,0,0,4.65208531696422,0,0,0 +"876.564208984375",0,0,0,0,0,0,0,0,0 +"876.670288085938",0,0,0,0,0,4.11694312019767,0,0,0 +"876.811706542969",0,0,0,0,0,0,0,0,0 +"876.900085449219",0,0,4.96718759261535,0,0,0,0,0,0 +"877.271423339844",3.74387575238664,0,0,0,0,2.92354020918754,0,0,0 +"877.713500976562",0,0,0,0,0,0,0,0,0 +"878.067321777344",3.46878849306538,0,0,0,0,0,0,0,0 +"878.244201660156",0,0,0,0,0,0,0,0,0 +"878.580383300781",0,0,0,0,0,6.39931177931429,0,0,0 +"878.881225585938",0,0,0,0,0,0,0,0,0 +"878.934326171875",0,3.21044482173191,0,2.6260867121901,0,0,0,0,0 +"879.129028320312",3.34617675212747,0,0,0,0,0,0,0,0 +"879.500854492188",0,0,0,2.74733393706692,0,0,0,0,0 +"879.837280273438",0,0,0,0,0,0,0,0,0 +"879.943481445312",0,0,3.78204164605986,0,0,0,0,0,0 +"880.173767089844",0,0,0,2.74733393706692,0,0,0,0,0 +"880.403991699219",0,0,0,0,0,0,0,0,0 +"880.474853515625",0,0,0,2.87681647523438,0,0,0,0,0 +"880.740600585938",0,0,0,0,0,0,0,0,0 +"880.988708496094",4.81456672190872,0,0,0,0,0,0,0,0 +"881.484924316406",0,0,11.1136350022795,3.05095491960259,0,3.45870610453986,0,0,0 +"881.839477539062",3.02241599465572,0,0,0,0,5.82842276238745,0,0,0 +"882.052185058594",0,2.77241616011272,0,0,0,0,0,0,0 +"882.265014648438",0,0,0,0,0,0,0,0,0 +"882.495544433594",3.92682790125942,0,0,0,0,0,0,0,0 +"882.708374023438",4.20906224750481,0,0,0,0,0,0,0,0 +"883.04541015625",0,0,0,0,0,3.87911874190275,0,0,0 +"883.187377929688",0,3.98668311438618,0,0,0,0,0,0,0 +"883.471252441406",0,0,0,0,0,0,0,0,0 +"883.684204101562",0,0,0,0,0,3.12400187833566,0,0,0 +"883.950439453125",0,0,0,0,0,2.99401247438035,0,0,0 +"884.056945800781",0,0,0,0,0,0,0,0,0 +"884.145690917969",0,0,0,0,0,0,0,0,0 +"884.234436035156",0,0,0,0,0,3.60043488083296,0,0,0 +"884.607299804688",0,0,5.46159322886501,3.26820737636541,0,0,0,0,0 +"884.944702148438",4.71359624553755,0,0,0,0,0,0,0,0 +"885.282165527344",0,0,0,0,0,0,0,0,0 +"885.548645019531",0,0,4.53300799978809,0,0,0,0,0,0 +"885.832885742188",0,0,0,0,0,0,0,0,0 +"886.063903808594",0,0,0,0,0,0,0,0,0 +"886.277160644531",0,0,0,0,0,3.29135399143776,0,0,0 +"886.472717285156",0,0,0,0,0,0,0,0,0 +"886.77490234375",0,0,3.98901317597629,0,0,0,0,0,0 +"887.023803710938",0,0,0,0,0,0,0,0,0 +"887.094970703125",3.57906612988241,0,4.33236865328276,3.02689766802677,0,0,0,0,0 +"887.4150390625",0,0,0,0,0,0,0,0,0 +"887.521728515625",0,0,0,0,0,0,0,0,0 +"887.841918945312",0,0,0,0,0,0,0,0,0 +"887.9130859375",0,0,0,0,0,0,0,0,0 +"888.002014160156",0,0,0,0,0,0,0,0,0 +"888.286682128906",0,0,0,3.14699209165973,0,0,0,0,0 +"888.553588867188",0,0,0,0,0,0,0,0,0 +"888.731567382812",0,0,0,0,0,0,0,0,0 +"888.927368164062",4.03975020704573,0,0,0,0,0,0,0,0 +"889.390258789062",0,0,0,2.74733393706692,0,0,0,0,0 +"889.835388183594",0,0,0,0,0,0,0,0,0 +"890.120361328125",0,0,0,0,0,0,0,0,0 +"890.369750976562",0,2.48776437621,0,0,0,0,0,0,0 +"890.601318359375",0,0,0,0,0,0,0,0,0 +"890.832946777344",0,2.96379997085435,0,0,0,0,0,0,0 +"890.975524902344",0,2.89058708796519,3.26928062059016,0,0,0,0,0,0 +"891.331970214844",0,3.15276751724082,0,0,0,0,0,0,0 +"891.635009765625",0,2.78398231098364,0,0,0,0,0,0,0 +"891.777648925781",0,0,0,2.60094053971269,0,0,0,0,0 +"891.831115722656",0,2.52232471466839,0,0,0,0,0,0,0 +"892.080749511719",3.2012831788043,0,0,0,0,0,0,0,0 +"892.811950683594",0,0,0,3.76502356408808,0,3.21396344259512,0,0,0 +"892.990356445312",0,0,0,0,0,0,0,0,0 +"893.115234375",4.54382447828666,0,0,0,0,0,0,0,0 +"893.543518066406",0,0,0,0,0,0,0,0,0 +"894.043273925781",5.19296680203426,0,0,0,0,0,0,0,0 +"894.471740722656",0,0,0,2.84337110912406,0,0,0,0,0 +"894.775268554688",0,0,0,0,0,0,0,0,0 +"895.043151855469",4.07648394351245,0,0,4.03523112068457,0,0,0,0,0 +"895.400451660156",0,0,0,0,0,0,0,0,0 +"895.596923828125",0,0,0,0,0,0,0,0,0 +"895.686279296875",0,3.90254969203172,3.61077932408287,0,0,0,0,0,0 +"895.793518066406",0,3.10267160038436,0,0,0,0,0,0,0 +"896.025817871094",0,2.76034251199056,0,0,0,0,0,0,0 +"896.222412109375",0,0,0,0,0,0,0,0,0 +"896.419006347656",0,7.91274982696574,0,0,0,0,0,0,0 +"896.56201171875",0,3.62880311188516,4.97435060937893,0,0,0,0,0,0 +"896.740783691406",0,2.85654958246718,0,0,0,0,0,0,0 +"897.02685546875",0,0,0,0,0,0,0,0,0 +"897.40234375",0,2.53387552983017,5.56038682454126,0,0,0,0,0,0 +"897.617004394531",0,0,5.99354047690725,0,0,0,0,0,0 +"897.99267578125",4.30094334084397,2.6762090896361,0,0,0,0,0,0,0 +"898.296813964844",0,0,0,0,0,0,0,0,0 +"898.43994140625",0,0,0,0,0,0,0,0,0 +"898.797912597656",0,0,0,0,0,0,0,0,0 +"898.994812011719",0,0,4.68591493254503,0,0,0,0,0,0 +"899.424438476562",0,0,0,2.81822493664666,0,0,0,0,0 +"899.639343261719",0,2.54596451366147,0,0,0,0,0,0,0 +"899.818420410156",0,2.51023573083709,0,0,0,0,0,0,0 +"899.890014648438",0,0,0,0,0,0,0,0,0 +"900.069152832031",0,0,0,0,0,0,0,0,0 +"900.21240234375",0,0,0,0,0,0,0,0,0 +"900.463195800781",0,0,7.1062420671226,2.74733393706692,0,0,0,0,0 +"900.660278320312",0,0,0,2.85167030275698,0,0,0,0,0 +"900.767822265625",0,0,0,0,0,4.79462203775056,0,0,0 +"900.839477539062",0,0,0,2.85167030275698,0,0,0,0,0 +"901.036560058594",0,2.48430244593409,0,0,0,0,0,0,0 +"901.233703613281",0,0,0,0,0,0,0,0,0 +"901.448791503906",0,3.556758673362,0,2.4257131744429,0,0,0,0,0 +"901.771484375",0,0,0,0,0,0,0,0,0 +"902.040405273438",0,0,0,0,0,0,0,0,0 +"902.148010253906",0,0,0,0,0,0,0,0,0 +"902.381103515625",0,0,0,0,0,0,0,0,0 +"902.596374511719",0,4.2794391188839,0,0,0,0,0,0,0 +"903.080688476562",4.18005078142606,4.782453664352,4.42402360215603,0,0,3.99306405539894,0,0,0 +"903.565185546875",0,0,0,2.50490336765556,0,0,0,0,0 +"903.852294921875",0,0,0,0,0,0,0,0,0 +"904.067687988281",3.0606802798878,0,5.34708311121374,0,0,0,0,0,0 +"904.480651855469",0,0,0,0,0,6.19623654463768,0,0,0 +"905.001403808594",3.60782357885183,0,0,0,0,0,0,0,0 +"905.468383789062",0,3.06811126192598,0,0,0,0,0,0,0 +"905.666015625",0,2.99836030931273,0,0,0,0,0,0,0 +"905.899597167969",4.59229226675467,0,0,3.56465002634089,0,0,0,0,0 +"906.187133789062",0,0,0,0,0,0,0,0,0 +"906.330932617188",0,0,0,0,0,0,0,0,0 +"906.582580566406",0,0,0,2.72215582441838,0,0,0,0,0 +"906.906127929688",0,0,0,0,0,0,0,0,0 +"907.175842285156",3.05096773394267,0,4.83796666198888,0,0,0,0,0,0 +"907.553527832031",0,0,0,0,0,0,0,0,0 +"908.147094726562",0,2.56791303532817,0,0,0,0,0,0,0 +"908.398986816406",0,0,0,0,0,0,0,0,0 +"908.578979492188",0,0,0,0,0,0,0,0,0 +"908.830932617188",0,0,0,0,0,0,0,0,0 +"909.046875",0,0,0,0,0,3.58256147075281,0,0,0 +"909.478942871094",0,0,0,2.94770747481412,0,0,0,0,0 +"909.839050292969",0,0,0,0,0,0,0,0,0 +"909.929138183594",0,0,0,0,0,0,0,0,0 +"910.05517578125",0,0,0,2.67644293748719,0,0,0,0,0 +"910.343383789062",3.02893991866672,0,8.76741389074709,2.4257131744429,0,0,0,0,0 +"910.829772949219",0,0,0,3.34739756957807,0,0,0,0,0 +"910.883850097656",0,0,0,3.34739756957807,0,0,0,0,0 +"911.009948730469",0,0,0,2.72215582441838,0,0,0,0,0 +"911.208190917969",0,0,0,0,0,0,0,0,0 +"911.388427734375",0,0,0,0,0,0,0,0,0 +"911.712890625",0,3.39078531456299,3.87369659493314,0,0,0,0,0,0 +"911.983276367188",3.18334636211824,0,0,0,0,0,0,0,0 +"912.235717773438",0,0,6.06681566659987,0,0,0,0,0,0 +"912.560302734375",0,0,0,0,0,0,0,0,0 +"912.740661621094",0,0,0,0,0,0,0,0,0 +"912.884948730469",0,0,0,0,0,0,0,0,0 +"913.227722167969",0,0,0,0,0,0,0,0,0 +"913.462280273438",0,0,0,0,0,0,0,0,0 +"914.021728515625",0,0,0,0,0,0,0,0,0 +"914.075866699219",0,0,0,0,0,2.92889000102242,0,0,0 +"914.599365234375",0,0,0,2.84337110912406,0,0,0,0,0 +"914.816040039062",0,0,0,0,0,0,0,0,0 +"914.996643066406",0,0,0,2.7556011905287,0,0,0,0,0 +"915.412048339844",0,0,0,0,0,0,0,0,0 +"915.610717773438",0,0,0,0,0,0,0,0,0 +"916.062438964844",0,0,0,0,0,0,0,0,0 +"916.279296875",0,0,0,0,0,0,0,0,0 +"916.460021972656",0,0,0,0,0,0,0,0,0 +"916.875732421875",0,0,5.44321346968435,2.74733393706692,0,5.93542609364803,0,0,0 +"917.2373046875",3.60959710166435,0,0,0,0,0,0,0,0 +"917.526611328125",0,0,0,0,0,0,0,0,0 +"917.707458496094",0,0,0,0,0,0,0,0,0 +"918.014953613281",0,0,0,0,0,0,0,0,0 +"918.232055664062",0,0,0,0,0,0,0,0,0 +"918.376770019531",0,0,0,0,0,0,0,0,0 +"918.4853515625",0,0,0,2.62611865236124,0,0,0,0,0 +"918.575805664062",4.00618801558529,0,0,0,0,0,0,0,0 +"918.666259765625",0,0,0,2.62611865236124,0,0,0,0,0 +"918.883422851562",0,3.04499429589327,0,0,0,0,0,0,0 +"919.281616210938",0,0,0,0,0,0,0,0,0 +"919.480712890625",0,0,0,2.55522765278151,0,0,0,0,0 +"919.770385742188",0,0,0,0,0,4.63423560546985,0,0,0 +"920.005798339844",0,0,4.28847048811848,0,0,0,0,0,0 +"920.186889648438",0,0,0,0,0,0,0,0,0 +"920.331787109375",0,0,3.87452742828563,0,0,0,0,0,0 +"920.549133300781",3.20562216063782,0,0,0,0,0,0,0,0 +"921.056396484375",0,0,3.53667330103776,0,0,0,0,0,0 +"921.600036621094",0,4.23280513230336,0,0,0,0,0,0,0 +"921.980651855469",0,0,0,0,0,0,0,0,0 +"922.21630859375",0,0,0,0,0,0,0,0,0 +"922.615234375",0,0,0,0,0,0,0,0,0 +"922.977966308594",0,0,0,0,0,0,0,0,0 +"923.050476074219",0,3.42534565302137,0,0,0,0,0,0,0 +"923.322570800781",0,0,0,0,0,0,0,0,0 +"923.504028320312",0,0,7.2876951910554,0,0,0,0,0,0 +"923.866882324219",0,0,0,0,0,0,0,0,0 +"923.993957519531",3.18945886676428,0,4.6502057246056,0,0,0,0,0,0 +"924.193542480469",0,0,0,0,0,0,0,0,0 +"924.429504394531",0,3.11873001174281,0,0,0,0,0,0,0 +"924.701843261719",0,0,0,0,0,0,0,0,0 +"924.883361816406",0,0,0,2.53004954013296,0,0,0,0,0 +"925.119445800781",0,0,0,0,0,0,0,0,0 +"925.210205078125",0,4.28290104915982,0,2.62611865236124,0,0,0,0,0 +"925.319152832031",0,2.7960559591058,3.6840545137755,0,0,0,0,0,0 +"925.6279296875",0,0,0,0,0,0,0,0,0 +"925.827758789062",0,2.86811573333811,0,0,0,0,0,0,0 +"926.082092285156",0,0,0,2.85167030275698,0,0,0,0,0 +"926.227416992188",0,0,0,2.85167030275698,0,0,0,0,0 +"926.554504394531",3.02894595253241,0,0,0,0,3.29135399143776,0,0,0 +"926.881652832031",0,3.0565604467642,0,0,0,0,0,0,0 +"927.117919921875",0,0,0,0,0,3.89780009647615,0,0,0 +"927.390625",0,0,0,0,0,0,0,0,0 +"927.499694824219",0,0,0,3.01750955349227,0,2.92354020918754,0,0,0 +"927.899780273438",0,3.13029616261374,0,0,0,0,0,0,0 +"928.136169433594",4.01958014075535,2.61853178514501,0,0,0,0,0,0,0 +"928.390869140625",0,0,0,0,0,0,0,0,0 +"928.481811523438",0,0,4.04310214309638,0,0,0,0,0,0 +"928.718322753906",0,0,0,0,0,0,0,0,0 +"928.863830566406",0,0,5.5952651991282,3.26820737636541,0,0,0,0,0 +"929.100402832031",3.17403920167238,0,0,0,0,0,0,0,0 +"929.336975097656",0,0,0,0,0,0,0,0,0 +"929.555419921875",3.52934064454842,0,3.85531683575249,0,0,0,0,0,0 +"929.97412109375",4.37623765321326,0,0,0,0,0,0,0,0 +"930.320068359375",0,0,0,0,0,0,0,0,0 +"930.556762695312",0,0,0,0,0,0,0,0,0 +"930.720703125",0,0,4.68591493254503,0,0,0,0,0,0 +"930.975708007812",0,0,7.62085986640606,0,0,0,0,0,0 +"931.048583984375",0,0,7.29671498163273,0,0,0,0,0,0 +"931.230773925781",0,0,0,0,0,0,0,0,0 +"931.613403320312",0,0,0,0,0,0,0,0,0 +"931.759155273438",0,2.80645366561072,0,2.4257131744429,0,4.11694312019767,0,0,0 +"932.087219238281",0,0,6.06681566659987,0,0,0,0,0,0 +"932.269470214844",0,0,0,0,0,0,0,0,0 +"932.451782226562",0,0,0,2.84337110912406,0,0,0,0,0 +"932.81640625",0,4.80609346334508,0,0,0,0,0,0,0 +"933.144653320312",0,0,0,3.73987739161068,0,2.92354020918754,0,0,0 +"933.345275878906",0,0,0,0,0,0,0,0,0 +"933.400024414062",0,0,0,0,0,0,0,0,0 +"933.618896484375",0,0,0,0,0,0,0,0,0 +"933.673645019531",0,0,0,0,0,0,0,0,0 +"933.874267578125",0,0,0,0,0,0,0,0,0 +"933.965515136719",0,0,0,0,0,0,0,0,0 +"934.166198730469",3.09357703487396,0,0,0,0,0,0,0,0 +"934.512939453125",0,0,0,0,0,0,0,0,0 +"934.67724609375",0,0,3.6840545137755,0,0,0,0,0,0 +"935.097045898438",0,0,0,0,0,3.60043488083296,0,0,0 +"935.462219238281",0,0,0,0,0,0,0,0,0 +"935.827453613281",4.29664663257161,0,0,0,0,0,0,0,0 +"936.028381347656",0,0,4.83796666198888,2.94770747481412,0,4.21301502361371,0,0,4.68345003591734 +"936.357177734375",0,0,4.13558792532214,0,0,0,0,0,0 +"936.55810546875",0,0,0,2.92256130233671,0,0,0,0,0 +"936.649475097656",0,0,0,0,0,0,0,0,0 +"936.704284667969",0,0,4.72981309770931,0,0,0,0,0,0 +"937.033203125",0,0,0,0,0,0,0,0,0 +"937.417053222656",4.24494191474262,0,5.93945150978716,0,0,5.03938839828109,0,0,0 +"937.782653808594",0,0,0,0,0,4.28427153471399,0,0,0 +"938.130065917969",0,0,0,0,0,0,0,0,0 +"938.2763671875",0,0,0,0,0,0,0,0,0 +"938.349487304688",0,3.18680502273883,3.98901317597629,0,0,0,0,0,0 +"938.697021484375",0,0,5.84063354415031,3.37254374205547,0,0,0,0,0 +"939.044555664062",0,0,0,0,0,0,0,0,0 +"939.410522460938",0,2.63008260030678,0,0,0,0,0,0,0 +"939.904602050781",0,3.22253380556321,0,0,0,0,0,0,0 +"940.0693359375",0,2.58000201915948,0,2.94770747481412,0,0,0,0,0 +"940.325622558594",0,0,0,0,0,0,0,0,0 +"940.600280761719",0,0,0,0,0,0,0,0,0 +"940.838317871094",0,2.94878722541665,0,0,0,0,0,0,0 +"941.296142578125",0,3.81777065827163,0,0,0,0,0,0,0 +"941.625915527344",0,0,0,0,0,0,0,0,0 +"941.80908203125",0,0,0,0,0,0,0,0,0 +"941.864074707031",0,0,0,0,0,0,0,0,0 +"942.047302246094",0,0,0,0,0,2.98148885613509,0,0,0 +"942.358825683594",0,0,0,0,0,0,0,0,0 +"942.560424804688",0,0,0,0,0,0,0,0,0 +"942.927062988281",0,0,0,0,0,0,0,0,0 +"943.055358886719",0,0,0,0,0,0,0,0,0 +"943.220397949219",0,3.59078084315086,0,0,0,0,0,0,0 +"943.623840332031",0,0,0,0,0,0,0,0,0 +"943.733825683594",0,2.81854264944203,0,3.4182885691578,0,0,0,0,0 +"944.137390136719",0,0,0,0,0,0,0,0,0 +"944.394226074219",0,0,0,0,0,0,0,0,0 +"944.504333496094",0,0,0,0,0,0,0,0,0 +"944.742858886719",0,0,0,0,0,0,0,0,0 +"945.036437988281",0,0,0,0,0,0,0,0,0 +"945.220031738281",0,0,0,0,0,0,0,0,0 +"945.476989746094",0,0,4.78470852822128,0,0,0,0,0,0 +"945.752380371094",0,0,0,0,0,0,0,0,0 +"945.862548828125",0,0,0,0,0,0,0,0,0 +"945.935974121094",0,0,0,0,0,0,0,0,0 +"946.30322265625",0,0,0,0,0,0,0,0,0 +"946.486938476562",0,0,0,3.12293484008391,0,0,0,0,0 +"946.780822753906",0,0,0,0,0,0,0,0,0 +"947.056396484375",0,0,0,0,0,0,0,0,0 +"947.258483886719",0,0,0,0,0,0,0,0,0 +"947.313598632812",0,0,0,0,0,0,0,0,0 +"947.644409179688",0,0,0,3.25132845734979,0,3.99306405539894,0,0,0 +"947.956848144531",0,0,0,3.05095491960259,0,0,0,0,0 +"948.398071289062",0,0,0,0,0,0,0,0,0 +"948.489990234375",0,0,5.23624193976793,0,0,0,0,0,0 +"948.72900390625",0,0,0,0,0,0,0,0,0 +"948.7841796875",0,0,0,0,0,0,0,0,0 +"948.931335449219",0,0,0,0,0,0,0,0,0 +"949.188781738281",0,0,3.60994849073039,0,0,0,0,0,0 +"949.483093261719",0,0,4.63182596542495,0,0,0,0,0,0 +"949.887878417969",0,0,0,0,0,0,0,0,0 +"950.274291992188",0,0,0,0,0,0,0,0,0 +"950.403137207031",0,0,0,0,0,0,0,0,0 +"950.660827636719",0,0,0,2.53004954013296,0,0,0,0,0 +"951.028991699219",3.04233204383678,0,0,0,0,0,0,0,0 +"951.213134765625",3.68895721599022,0,0,0,0,0,0,0,0 +"951.544616699219",0,0,7.22072781481326,0,0,0,0,0,0 +"951.747192382812",0,0,4.47894340262861,0,0,0,0,0,0 +"952.134033203125",0,0,0,0,0,0,0,0,0 +"952.226135253906",3.03736989909013,2.48776437621,0,3.91401583597889,0,0,0,0,0 +"952.447204589844",0,0,0,0,0,0,0,0,0 +"952.871032714844",0,2.76034251199056,0,0,0,0,0,0,0 +"953.110595703125",0,0,0,0,0,0,0,0,0 +"953.331787109375",0,0,0,0,0,0,0,0,0 +"953.626770019531",0,2.71421602266125,0,0,0,0,0,0,0 +"953.792663574219",0,0,0,0,0,0,0,0,0 +"953.995544433594",0,0,0,2.65126482483864,0,0,0,0,0 +"954.216796875",0,0,0,0,0,0,0,0,0 +"954.45654296875",0,0,0,0,0,0,0,0,0 +"954.604125976562",0,2.80645366561072,0,2.4257131744429,0,0,0,0,0 +"954.843933105469",0,0,0,0,0,0,0,0,0 +"955.065307617188",3.22962920840877,0,0,0,0,0,0,0,0 +"955.415893554688",0,0,4.6667043400119,0,0,0,0,0,0 +"955.655822753906",0,0,0,0,0,0,0,0,0 +"955.932678222656",0,0,0,0,0,0,0,0,0 +"956.006530761719",0,0,0,0,0,0,0,0,0 +"956.117248535156",0,0,0,0,0,0,0,0,0 +"956.394226074219",0,0,0,0,0,0,0,0,0 +"956.634216308594",0,0,0,0,0,0,0,0,0 +"956.837341308594",0,0,0,0,0,0,0,0,0 +"957.151306152344",4.47939307176191,0,0,0,0,0,0,0,0 +"957.391479492188",0,0,0,0,0,0,0,0,0 +"957.68701171875",0,0,0,0,0,0,0,0,0 +"957.964172363281",0,0,0,0,0,4.33687038982666,0,0,0 +"958.241394042969",0,0,0,0,4.97541561473958,0,0,0,0 +"958.740417480469",0,0,3.61077932408287,2.72215582441838,0,0,0,0,0 +"959.073181152344",0,0,0,0,0,0,0,0,0 +"959.332092285156",0,0,0,2.84337110912406,0,4.24693252415298,0,0,0 +"959.720397949219",0,0,0,0,0,0,0,0,0 +"959.979370117188",0,0,0,3.4434347416352,4.61084676324044,0,0,0,0 +"960.367858886719",0,0,0,0,0,4.25945614239824,0,0,0 +"960.663879394531",3.71056757803552,2.86360813714143,0,0,0,0,0,0,0 +"960.978515625",0,3.16484116536297,0,0,4.71656183482394,0,0,0,0 +"961.219116210938",3.96358474851968,0,0,0,4.63109460219671,0,0,0,0 +"961.422729492188",0,0,0,0,0,0,0,0,0 +"961.737426757812",0,0,0,0,0,0,0,0,0 +"962.03369140625",0,0,0,0,0,0,0,0,0 +"962.126281738281",0,0,0,0,0,0,0,0,0 +"962.330017089844",0,3.1764073162339,0,0,8.34963453042663,0,0,0,0 +"962.626342773438",0,0,0,2.80134601763103,0,0,0,0,0 +"963.200622558594",0,0,0,0,4.0553161336994,0,0,0,0 +"963.441528320312",0,0,3.38459720163331,0,5.75906140620279,0,0,0,0 +"963.663879394531",0,0,6.3744619359669,3.7387884707091,0,0,0,0,0 +"964.053161621094",0,0,0,0,0,0,0,0,0 +"964.145812988281",0,0,0,0,0,0,0,0,0 +"964.201416015625",0,0,3.81692002064681,0,0,0,0,0,0 +"964.460998535156",0,0,0,4.03523112068457,0,0,0,0,0 +"964.720581054688",0,0,0,2.50490336765556,4.44767763122821,0,0,0,0 +"964.943115234375",3.2858363441926,0,0,0,6.16794984451817,0,0,0,0 +"965.351135253906",0,0,0,0,0,0,0,0,0 +"965.462463378906",0,0,0,0,0,0,0,0,0 +"965.72216796875",0,0,0,0,0,0,0,0,0 +"965.77783203125",3.252322460159,0,0,0,0,0,0,0,0 +"966.24169921875",0,0,0,0,0,3.39916526719159,0,0,0 +"966.557250976562",0,4.42575744192613,0,0,0,0,0,0,0 +"966.835632324219",0,0,0,0,0,0,0,0,0 +"966.928466796875",0,4.06787743942511,0,0,6.48501681282858,0,0,0,0 +"967.188415527344",0,0,0,0,0,3.0188278666961,0,0,0 +"967.2998046875",4.35804681941787,0,0,0,0,2.94141361926768,0,0,0 +"967.708312988281",5.21941280909201,0,0,3.51432574121494,0,4.50422250292876,0,0,0 +"968.098388671875",0,2.59207566728163,0,0,0,0,0,0,0 +"968.67431640625",0,0,0,0,5.24429981833531,0,0,0,0 +"968.953063964844",0,0,0,0,0,0,0,0,0 +"969.064575195312",0,0,0,0,0,0,0,0,0 +"969.30615234375",0,0,0,0,0,0,0,0,0 +"969.677978515625",0,0,0,0,0,0,0,0,0 +"969.770935058594",0,0,0,0,5.29126309972684,0,0,0,0 +"969.975463867188",0,0,0,0,0,0,0,0,0 +"970.161376953125",0,0,0,3.8934491215251,11.3167072946788,0,0,0,0 +"970.27294921875",0,0,0,0,0,0,0,0,0 +"970.570495605469",0,0,0,0,4.44820043478557,0,0,0,0 +"970.88671875",0,0,4.55221859232123,0,0,0,0,0,0 +"971.296020507812",0,0,0,0,0,0,0,0,0 +"971.59375",0,0,0,0,5.01403024922431,0,0,0,0 +"971.817077636719",0,0,0,0,0,0,0,0,0 +"972.282409667969",0,0,0,0,0,0,0,0,16.7590746528484 +"972.580261230469",3.92118115727087,3.8333062366697,0,0,6.23806222496242,0,0,0,0 +"972.822326660156",0,0,0,0,4.73256597205316,0,0,0,40.0051160913857 +"973.343811035156",0,0,0,0,0,0,0,0,36.2144944408143 +"973.865417480469",0,0,0,2.69700965194097,0,0,0,0,26.0440357622432 +"974.40576171875",0,0,7.12545265965574,0,4.54852862966593,3.67784912826138,0,0,24.8971192248353 +"975.020874023438",5.42914920830491,3.68700324933663,6.48344633359896,2.65126482483864,3.90976694430801,0,0,0,16.0184645133252 +"975.393737792969",0,0,0,0,0,0,0,0,0 +"975.468322753906",0,0,0,0,0,4.33606244533341,0,0,0 +"975.5615234375",0,0,0,0,0,0,0,0,7.24993737082712 +"975.766662597656",0,0,0,0,0,0,0,0,0 +"975.971801757812",0,0,0,3.4434347416352,0,0,0,0,5.74107998141525 +"976.214294433594",0,0,0,0,0,0,0,0,0 +"976.270263671875",0,0,0,3.4434347416352,0,0,0,0,0 +"976.400817871094",0,2.9648456367751,0,0,4.93914784031423,0,0,0,0 +"976.531433105469",0,0,0,3.12184591918233,0,2.90407460870667,0,0,4.69176188814266 +"976.94189453125",0,0,0,2.84337110912406,0,0,0,0,0 +"977.072570800781",0,0,0,2.69700965194097,0,0,0,0,0 +"977.371154785156",0,0,0,0,0,0,0,0,0 +"977.464477539062",0,4.14161315527465,0,0,0,0,0,0,0 +"977.6884765625",3.4389541882567,0,0,0,0,2.92354020918754,0,0,0 +"978.043212890625",3.68176182163925,0,0,0,0,0,0,0,0 +"978.136535644531",0,0,0,4.06867648679489,0,0,0,0,0 +"978.640747070312",0,2.52232471466839,0,0,0,0,0,0,0 +"979.145080566406",0,0,0,0,4.08074612142983,0,0,0,0 +"979.42529296875",0,0,0,0,0,0,0,0,0 +"979.518737792969",0,0,3.47708298385907,0,0,0,0,0,0 +"979.630859375",0,0,0,0,0,0,0,0,0 +"979.855102539062",0,0,0,0,0,0,0,0,0 +"980.004577636719",0,0,0,0,4.98611112170576,0,0,0,0 +"980.098022460938",0,0,0,0,0,0,0,0,0 +"980.154113769531",0,0,0,0,0,0,0,0,0 +"980.490600585938",0,0,0,0,0,0,0,0,0 +"980.677551269531",0,0,0,0,0,0,0,0,0 +"980.9580078125",0,0,0,0,4.24217296656155,0,0,0,0 +"981.219787597656",0,0,0,0,0,0,0,0,0 +"981.462951660156",0,0,0,0,0,0,0,0,0 +"981.780883789062",0,0,0,0,0,0,0,0,0 +"982.098937988281",0,0,0,0,0,0,0,0,0 +"982.248596191406",0,0,0,0,0,0,0,0,0 +"982.58544921875",0,3.24897458771744,0,0,0,0,0,0,0 +"982.978454589844",0,0,0,0,0,6.65398819256158,0,0,0 +"983.409057617188",0,0,3.47708298385907,0,0,0,0,0,0 +"983.877136230469",0,0,0,0,0,0,0,0,0 +"984.083129882812",0,0,3.98901317597629,0,0,0,0,0,10.7752227681157 +"984.401550292969",0,0,0,2.69700965194097,0,3.67784912826138,0,0,21.1771884354829 +"984.720031738281",0,0,0,0,0,0,0,0,0 +"984.963562011719",0,0,5.46159322886501,0,0,0,0,0,20.3343239795166 +"985.24462890625",0,2.76034251199056,0,0,0,0,0,0,0 +"985.507019042969",0,0,0,0,5.9346683320617,0,0,0,11.8069184132598 +"985.769409179688",0,0,0,0,5.80654749115168,0,0,0,0 +"986.050598144531",0,0,0,0,0,0,0,0,0 +"986.200561523438",0,0,0,0,0,0,0,0,10.7498616755326 +"986.594360351562",0,0,0,0,0,0,0,0,6.26046701060803 +"986.819396972656",0,0,0,0,0,0,0,0,0 +"986.931945800781",0,0,0,0,4.24163436476434,0,0,0,5.41196965022021 +"987.213256835938",0,0,0,0,0,0,0,0,5.78670884332959 +"987.344604492188",0,0,0,0,0,0,0,0,5.40057012758449 +"987.682250976562",0,0,0,0,0,0,0,0,0 +"988.076354980469",0,0,0,5.45369976337125,0,0,0,0,0 +"988.3203125",0,0,0,0,0,0,0,0,0 +"988.564331054688",0,0,0,0,0,0,0,0,0 +"988.8271484375",0,0,0,0,0,0,0,0,0 +"989.127502441406",0,0,0,0,0,0,0,0,0 +"989.221435546875",0,0,0,0,0,0,0,0,0 +"989.296508789062",4.18914619832375,0,0,0,0,0,0,0,0 +"989.559448242188",0,0,0,0,0,0,0,0,0 +"989.615783691406",0,0,0,0,0,0,0,0,0 +"989.991394042969",0,0,7.38648878673165,0,4.03150195136059,0,0,0,0 +"990.348388671875",0,0,0,0,0,0,0,0,0 +"990.555053710938",0,0,0,3.46861285428375,4.23806802138181,0,0,0,0 +"990.79931640625",0,0,0,0,0,0,0,0,0 +"991.062438964844",0,0,0,0,0,0,0,0,0 +"991.381958007812",0,0,0,0,7.52629690088428,0,0,0,0 +"991.569946289062",0,0,0,0,4.96350062445025,4.4329422932427,0,0,0 +"991.851989746094",0,0,0,0,0,0,0,0,0 +"992.134033203125",0,0,0,0,4.43750492781939,0,0,0,0 +"992.416137695312",3.22508451689276,0,0,0,0,0,0,0,0 +"992.641784667969",0,0,5.69408316476506,0,0,0,0,0,0 +"992.923950195312",0,0,0,0,0,0,0,0,0 +"992.999206542969",0,0,0,0,3.79820464066427,0,0,0,0 +"993.112121582031",0,0,0,0,0,0,0,0,0 +"993.413146972656",0,0,7.59979250005916,0,7.20922993257387,0,0,0,5.126365627606 +"993.733093261719",0,0,0,0,0,3.16749862522481,0,0,0 +"994.034240722656",3.09357703487396,0,0,0,5.03892163515754,0,0,0,0 +"994.410705566406",0,0,0,0,0,0,0,0,0 +"994.598999023438",0,0,0,0,0,0,0,0,0 +"994.749633789062",0,0,0,0,0,2.90488255319992,0,0,0 +"995.013244628906",0,0,0,0,0,3.16136458748245,0,0,0 +"995.352233886719",0,0,0,0,0,0,0,0,0 +"995.578308105469",0,0,0,0,0,0,0,0,0 +"995.842041015625",0,0,0,0,0,0,0,0,0 +"996.105773925781",0,0,0,0,0,0,0,0,6.56310346027949 +"996.331909179688",0,0,0,0,0,0,0,0,0 +"996.633483886719",0,0,0,2.67644293748719,0,0,0,0,18.0756972760931 +"997.104675292969",0,0,0,0,0,0,0,0,0 +"997.293212890625",0,0,0,0,5.22115071928259,0,0,0,13.2922857548156 +"997.783508300781",0,0,3.91573798628367,0,0,0,0,0,4.90215868360806 +"998.160705566406",0,0,0,2.74733393706692,0,0,0,0,0 +"998.292724609375",0,3.34016656474615,0,2.74730199689578,3.93130023796911,3.82651988679009,0,0,0 +"998.594543457031",0,2.91474971991865,0,0,0,0,0,0,0 +"999.085144042969",0,0,0,0,0,0,0,0,0 +"999.349365234375",0,0,0,0,0,0,0,0,0 +"999.500305175781",3.17879563673655,0,0,0,0,0,0,0,4.62795418362958 +"999.972229003906",0,3.44088123141945,0,0,5.7946482991022,0,0,0,0 +"1000.25543212891",0,2.6762090896361,0,0,0,0,0,0,0 +"1000.65197753906",3.84881072761349,0,5.23624193976793,0,0,0,0,0,0 +"1000.93530273438",0,0,0,2.50490336765556,0,0,0,0,0 +"1001.23754882812",0,0,0,0,0,0,0,0,0 +"1001.50201416016",0,0,0,0,0,0,0,0,0 +"1001.70983886719",0,0,0,0,0,5.31191452302274,0,0,0 +"1001.78546142578",0,0,0,0,0,0,0,0,0 +"1002.04998779297",4.16624723689104,0,0,0,0,0,0,0,0 +"1002.40911865234",0,0,5.84063354415031,0,0,0,0,0,0 +"1002.65484619141",0,0,0,3.29707328445212,0,0,0,0,0 +"1002.88171386719",0,0,0,3.05204384050417,0,0,0,0,0 +"1003.16534423828",0,0,0,0,0,0,0,0,0 +"1003.39227294922",0,0,0,0,0,0,0,0,0 +"1003.69488525391",0,0,0,0,0,0,0,0,0 +"1003.921875",0,0,0,0,0,3.47657951462001,0,0,0 +"1004.31915283203",3.90084765485916,0,0,2.65126482483864,5.09767342534951,0,0,0,0 +"1004.56512451172",0,0,0,2.50490336765556,0,0,0,0,0 +"1004.86785888672",0,0,0,0,0,0,0,0,0 +"1005.11389160156",0,0,0,0,0,0,0,0,0 +"1005.30322265625",0,0,0,3.4182885691578,0,0,0,0,8.88174238192052 +"1005.625",0,0,0,0,8.0890989737377,0,0,0,12.5246117126977 +"1006.09838867188",0,3.79425363772379,4.33236865328276,0,0,0,0,0,6.74378728239613 +"1006.49609375",0,0,0,0,4.59549191105746,0,0,0,5.15537078506972 +"1006.74237060547",0,0,0,0,4.38826075775014,0,0,0,6.68943784564985 +"1006.96966552734",0,0,0,0,0,0,0,0,0 +"1007.10229492188",0,0,0,3.34739756957807,0,0,0,0,0 +"1007.50018310547",0,2.77241616011272,4.08149895820205,0,0,3.65919147227376,0,0,0 +"1007.78448486328",0,2.66412010580479,5.76735835445768,0,5.60052002292766,0,0,0,7.39330418325474 +"1008.0498046875",0,0,0,0,0,0,0,0,0 +"1008.10668945312",0,0,0,0,0,0,0,0,0 +"1008.27728271484",0,0,0,0,0,0,0,0,0 +"1008.48583984375",0,3.69909223316793,0,0,6.05692614267163,0,0,0,5.77588252846461 +"1008.88403320312",0,0,0,4.23560465843176,7.04315954046521,0,0,0,0 +"1009.11157226562",0,0,0,3.32221945692952,10.9914304360089,0,0,0,0 +"1009.37713623047",0,0,0,0,0,0,0,0,0 +"1009.75646972656",0,2.58397144668662,0,0,0,0,0,0,0 +"1009.85137939453",0,0,0,0,0,0,0,0,0 +"1009.90826416016",0,0,0,2.69700965194097,6.38470441618807,0,0,0,5.98685253170076 +"1010.21185302734",0,0,0,0,0,0,0,0,0 +"1010.43957519531",0,0,0,0,0,0,0,0,0 +"1010.53448486328",0,0,0,3.12184591918233,0,0,0,0,4.63289608546652 +"1010.87609863281",0,0,0,0,0,3.09008437779639,0,0,0 +"1010.98999023438",0,3.35277838153784,0,0,4.48326452412762,0,0,0,0 +"1011.65447998047",0,0,0,4.36508719659922,3.76367915311942,0,0,0,0 +"1012.26226806641",0,0,0,0,0,0,0,0,0 +"1012.39520263672",0,0,0,0,0,0,0,0,0 +"1012.60418701172",0,0,0,0,0,0,0,0,0 +"1012.77514648438",0,0,0,0,4.02025204435735,0,0,0,0 +"1013.09820556641",0,0,0,0,0,0,0,0,5.54336373224135 +"1013.45922851562",0,3.65296574383862,0,0,0,5.53105754674426,0,0,0 +"1013.89642333984",0,0,0,0,0,0,0,0,0 +"1013.95349121094",0,3.4369118038923,0,0,0,0,0,0,0 +"1014.29571533203",0,0,6.03110645866044,2.85163836258584,3.99643786201854,0,0,0,0 +"1014.65698242188",0,0,0,0,0,0,0,0,0 +"1014.92321777344",0,0,3.32336958771025,0,0,0,0,0,0 +"1015.17053222656",0,5.40251409612865,0,0,0,3.59962693633971,0,0,0 +"1015.47485351562",0,0,0,2.60094053971269,0,0,0,0,0 +"1015.779296875",0,0,0,0,5.06207073421026,0,0,0,0 +"1015.85540771484",0,3.34121223066691,0,0,0,0,0,0,7.14446077585928 +"1016.08374023438",0,0,0,0,4.69287413397402,0,0,0,0 +"1016.27404785156",0,0,0,0,0,0,0,0,4.77568969012339 +"1016.65478515625",0,0,0,0,0,0,0,0,0 +"1016.99743652344",0,0,0,0,0,0,0,0,0 +"1017.09265136719",0,0,0,2.55522765278151,4.51226085524058,0,0,0,0 +"1017.32110595703",0,2.80645366561072,0,0,0,0,0,0,0 +"1017.56866455078",0,0,0,0,0,0,0,0,0 +"1017.96862792969",0,0,0,0,0,0,0,0,0 +"1018.2353515625",0,0,0,0,0,0,0,0,0 +"1018.44488525391",0,0,0,0,0,0,0,0,0 +"1018.76885986328",0,0,0,0,0,0,0,0,0 +"1018.86413574219",0,0,0,4.66044092567312,0,0,0,0,0 +"1019.14996337891",0,3.18680502273883,0,0,0,0,0,0,0 +"1019.43591308594",0,0,0,0,3.885414160172,0,0,0,0 +"1019.72186279297",0,0,0,0,0,0,0,0,0 +"1020.08410644531",0,0,0,0,0,0,0,0,0 +"1020.21759033203",0,3.86734374216771,0,0,0,0,0,0,0 +"1020.31292724609",0,0,0,2.62611865236124,0,0,0,0,0 +"1020.40826416016",0,0,0,0,0,0,0,0,0 +"1020.54174804688",0,0,0,2.80134601763103,4.68095914368469,0,0,0,0 +"1020.84692382812",0,0,0,0,0,0,0,0,0 +"1021.11401367188",0,0,0,0,0,0,0,0,0 +"1021.228515625",0,2.56791303532817,3.9349242088562,0,0,3.00014651212271,0,0,0 +"1021.47650146484",0,0,3.4386861687534,0,0,0,0,0,0 +"1021.82000732422",0,0,7.46609615983536,0,0,0,0,0,0 +"1022.1826171875",0,0,0,2.94770747481412,0,0,0,0,0 +"1022.41168212891",0,3.40235146543392,0,0,0,0,0,0,0 +"1022.69805908203",0,0,0,0,7.41581180083495,3.10260799604165,0,0,0 +"1023.13726806641",0,0,0,0,0,0,0,0,0 +"1023.34729003906",0,2.76034251199056,0,0,0,0,0,0,4.83892418686573 +"1023.59558105469",0,0,0,2.82649219010843,0,0,0,0,0 +"1023.88214111328",3.11824951911919,0,0,3.86827100887656,27.4480044089629,0,0,0,0 +"1024.32153320312",0,0,0,0,0,0,0,0,0 +"1024.64636230469",0,2.7142313583704,0,2.53004954013296,0,0,0,0,0 +"1024.99047851562",0,0,0,2.80134601763103,16.7539159058655,0,0,0,0 +"1025.41101074219",0,2.7960559591058,4.28763965476599,2.4257131744429,0,0,0,0,0 +"1025.88891601562",0,0,4.55221859232123,0,0,0,0,0,5.68615733689823 +"1026.19494628906",0,2.51023573083709,0,0,0,0,0,0,0 +"1026.44360351562",0,0,3.9349242088562,0,3.9923329168388,0,0,0,0 +"1026.71142578125",0,0,0,0,0,0,0,0,0 +"1026.97924804688",0,0,0,3.02689766802677,0,0,0,0,0 +"1027.20886230469",0,0,0,0,0,0,0,0,0 +"1027.4384765625",0,0,0,3.61866210690499,0,0,0,0,0 +"1027.89782714844",0,0,3.47708298385907,0,4.68095914368469,0,0,0,0 +"1028.52954101562",0,0,0,0,9.24194136543715,0,0,0,0 +"1028.75927734375",0,0,0,0,0,0,0,0,0 +"1028.96997070312",0,0,0,0,0,0,0,0,0 +"1029.16149902344",0,3.28301209321544,0,0,0,0,0,0,5.11368508131449 +"1029.64038085938",0,0,0,0,0,0,0,0,0 +"1029.90856933594",0,0,0,0,0,0,0,0,0 +"1030.04260253906",0,0,0,0,4.35319666840809,0,0,0,0 +"1030.11926269531",0,2.63009793601594,0,0,0,0,0,0,0 +"1030.330078125",0,0,0,0,0,0,0,0,0 +"1030.52172851562",0,0,0,0,0,0,0,0,0 +"1031.07763671875",0,0,4.45973281009547,2.74733393706692,4.44820043478557,0,0,0,0 +"1031.61450195312",0,0,0,0,5.5649173317884,0,0,0,0 +"1032.07470703125",3.14957846097531,0,0,0,0,4.04647085500485,0,0,0 +"1032.78442382812",0,0,5.56038682454126,0,0,0,0,0,0 +"1033.05310058594",0,0,0,0,4.82758553667048,0,0,0,0 +"1033.24499511719",3.01786526927403,0,0,3.32221945692952,4.29324119313282,0,0,0,0 +"1033.60961914062",0,0,0,0,0,0,0,0,0 +"1033.87841796875",0,0,0,0,0,0,0,0,0 +"1034.08959960938",0,0,0,0,0,0,0,0,0 +"1034.28149414062",0,0,9.52740003505265,0,5.75958420976015,0,0,0,0 +"1034.56958007812",0,0,0,0,0,0,0,0,0 +"1034.85766601562",0,0,0,0,0,0,0,0,0 +"1035.10729980469",0,0,0,0,0,0,0,0,0 +"1035.33776855469",0,0,0,0,0,0,0,0,0 +"1035.453125",0,2.74825352815926,0,0,0,0,0,0,0 +"1035.70288085938",0,0,0,0,0,0,0,0,0 +"1035.76049804688",0,0,0,0,0,0,0,0,0 +"1036.14477539062",0,2.77243149582187,0,0,0,0,0,0,0 +"1036.45227050781",0,0,0,0,0,0,0,0,0 +"1036.75988769531",0,0,0,0,0,0,0,0,0 +"1036.99047851562",0,0,0,0,0,3.01880416811033,0,0,0 +"1037.43273925781",0,0,0,0,0,0,0,0,0 +"1037.5673828125",0,0,0,0,0,0,0,0,0 +"1037.87512207031",0,0,0,2.84337110912406,0,0,0,0,0 +"1038.14440917969",0,0,0,0,0,0,0,0,0 +"1038.54833984375",0,0,0,0,0,0,0,0,0 +"1038.72155761719",0,0,0,0,0,0,0,0,0 +"1038.87548828125",0,0,0,0,0,0,0,0,0 +"1039.01013183594",0,0,0,0,0,0,0,0,0 +"1039.26037597656",0,0,0,0,4.96175833756975,0,0,0,0 +"1039.47204589844",3.16818071413566,0,0,0,0,0,0,0,0 +"1039.72229003906",0,0,0,3.61866210690499,0,0,0,0,0 +"1039.97265625",0,0,0,0,0,0,0,0,0 +"1040.28063964844",0,0,0,0,0,0,0,0,0 +"1040.376953125",0,0,0,0,0,0,0,0,0 +"1040.8583984375",0,0,0,2.50490336765556,0,0,0,0,0 +"1041.22436523438",0,0,0,0,0,0,0,0,0 +"1041.53271484375",0,0,0,0,0,0,0,0,0 +"1041.86022949219",3.51442901367517,0,0,2.4257131744429,0,0,0,0,0 +"1042.24572753906",0,0,0,0,0,0,0,0,0 +"1042.47692871094",0,0,0,0,0,0,0,0,0 +"1042.66979980469",0,0,0,0,0,0,0,0,0 +"1042.92041015625",0,0,0,0,4.48272592233041,0,0,0,0 +"1043.13244628906",0,0,3.45789676128654,0,0,0,0,0,0 +"1043.63391113281",0,0,0,0,0,0,0,0,0 +"1043.73034667969",0,0,0,0,0,3.45870610453986,0,0,0 +"1044.11608886719",0,0,0,0,0,0,0,0,0 +"1044.27038574219",0,2.85654958246718,0,0,0,0,0,0,0 +"1044.63696289062",0,3.19887867086098,0,0,0,0,0,0,0 +"1044.984375",0,0,0,0,0,0,0,0,0 +"1045.3125",0,0,0,0,0,4.52822995075127,0,0,0 +"1045.640625",0,0,0,0,0,0,0,0,0 +"1045.93029785156",0,12.5038196805761,4.33236865328276,0,0,0,0,0,0 +"1046.31640625",0,0,0,0,0,0,0,0,0 +"1046.490234375",5.79531355702547,0,4.08149895820205,2.60094053971269,0,0,0,0,0 +"1046.62548828125",0,0,0,2.4257131744429,0,0,0,0,0 +"1046.76062011719",0,0,0,0,0,0,0,0,0 +"1046.89587402344",0,0,0,0,0,0,0,0,0 +"1047.06970214844",0,0,0,0,0,0,0,0,0 +"1047.26293945312",0,0,0,0,0,0,0,0,0 +"1047.47546386719",5.30396597448031,0,0,0,0,0,0,0,0 +"1047.6494140625",0,0,3.78204164605986,0,0,0,0,0,0 +"1047.76538085938",0,0,0,0,0,0,0,0,0 +"1047.95861816406",0,3.0565604467642,0,0,4.04393974520728,0,0,0,0 +"1048.26782226562",0,0,0,0,0,2.9761390643002,0,0,0 +"1048.53845214844",0,3.72502551807093,0,3.73987739161068,3.885414160172,0,0,0,0 +"1048.82849121094",0,2.54596451366147,0,0,0,0,0,0,0 +"1049.27319335938",3.53545314919446,0,0,0,5.34286992809532,0,0,0,0 +"1049.79541015625",0,0,0,0,0,0,0,0,0 +"1049.93078613281",0,0,0,0,0,0,0,0,0 +"1050.22106933594",0,0,0,0,3.86226506111928,0,0,0,0 +"1050.54992675781",0,0,0,0,3.89268560348438,3.32788505750552,0,0,0 +"1050.7822265625",0,0,0,0,0,0,0,0,0 +"1050.89831542969",0,0,4.70510115511757,0,6.82401339686856,3.73044798337405,0,0,0 +"1051.14990234375",0,0,0,0,0,0,0,0,0 +"1051.2080078125",0,0,4.76552230564875,3.25132845734979,0,0,0,0,0 +"1051.4208984375",0,0,3.9349242088562,0,0,0,0,0,0 +"1051.67260742188",0,0,0,0,8.84837618282504,0,0,0,0 +"1051.82751464844",0,0,0,0,5.80654749115167,4.34302812615479,0,0,0 +"1052.17602539062",0,0,0,0,0,0,0,0,0 +"1052.46655273438",0,0,0,0,0,0,0,0,0 +"1052.56335449219",0,0,0,0,0,0,0,0,0 +"1052.87329101562",0,0,0,0,0,0,0,0,0 +"1053.33825683594",0,0,5.25542816234046,2.81822493664666,0,3.89777639789037,0,0,0 +"1053.60961914062",0,0,0,2.50490336765556,0,0,0,0,0 +"1053.93908691406",0,0,0,0,0,0,0,0,0 +"1054.11352539062",0,0,0,0,0,0,0,0,0 +"1054.2685546875",0,0,0,0,0,0,0,0,0 +"1054.48181152344",0,0,0,0,0,0,0,0,0 +"1054.73388671875",0,0,0,0,0,0,0,0,0 +"1054.7919921875",0,0,0,0,0,0,0,0,0 +"1055.04406738281",0,0,0,0,0,0,0,0,0 +"1055.12170410156",0,0,3.90940580287258,0,5.96797433628339,0,0,0,0 +"1055.56774902344",0,2.47619822533908,0,2.94770747481412,0,0,0,0,0 +"1055.91687011719",0,0,3.53117195097916,0,0,0,0,0,0 +"1056.24670410156",0,3.1884963000652,0,0,0,0,0,0,0 +"1056.53784179688",0,0,3.30498982852959,0,0,0,0,0,0 +"1056.92590332031",3.01963879208655,0,0,0,0,5.03858045378784,0,0,0 +"1057.4306640625",0,0,0,0,0,0,0,0,0 +"1057.72192382812",0,0,0,0,6.89997300937306,0,0,0,0 +"1058.03259277344",0,0,3.57507011614344,0,0,0,0,0,0 +"1058.47924804688",0,0,0,0,0,0,0,0,0 +"1058.71240234375",0,2.80645366561072,0,0,4.43932898432141,0,0,0,0 +"1058.92602539062",3.13420710331026,0,3.61077932408287,0,0,0,0,0,0 +"1059.19799804688",0,4.0338399339271,3.64834530583606,0,0,0,0,0,0 +"1059.56726074219",0,3.93658719752973,0,0,0,0,0,0,0 +"1060.03369140625",0,0,4.7839020648294,0,0,0,0,0,0 +"1060.26696777344",0,3.69909223316793,0,0,0,0,0,0,0 +"1060.51965332031",0,2.51023573083709,0,0,3.79874324246147,0,0,0,0 +"1060.75305175781",0,0,0,0,0,0,0,0,0 +"1060.86975097656",0,0,4.36724702786971,0,0,0,0,0,0 +"1061.04467773438",3.26768778395837,0,0,0,0,0,0,0,0 +"1061.27807617188",0,0,0,2.50490336765556,5.39447675646379,0,0,0,0 +"1061.6865234375",0,0,0,0,0,0,0,0,0 +"1062.05615234375",0,0,6.59795645125023,0,0,0,0,0,0 +"1062.28967285156",0,0,0,0,0,0,0,0,0 +"1062.46484375",0,0,0,0,0,0,0,0,0 +"1062.64001464844",0,0,5.04493819190531,0,0,0,0,0,0 +"1062.87353515625",0,0,0,0,0,0,0,0,0 +"1062.93188476562",0,2.62611317277964,0,0,0,0,0,0,0 +"1063.14599609375",3.08316782195556,0,3.45789676128654,2.50490336765556,0,0,0,0,0 +"1063.53540039062",0,0,0,3.45173393526812,0,0,0,0,0 +"1063.86645507812",0,0,0,0,0,0,0,0,0 +"1063.96374511719",0,0,0,0,0,0,0,0,0 +"1064.33386230469",0,0,3.61077932408287,0,0,0,0,0,0 +"1064.70385742188",0,0,0,3.14699209165973,0,0,0,0,0 +"1064.97668457031",0,0,0,2.45089128709145,8.87272896696106,2.99479672028782,0,0,0 +"1065.34680175781",0,0,0,0,0,0,0,0,0 +"1065.54174804688",0,0,0,0,0,0,0,0,0 +"1065.81457519531",0,0,0,0,0,0,0,0,0 +"1065.98999023438",0,0,0,0,0,0,0,0,0 +"1066.34094238281",0,0,0,2.53004954013296,0,0,0,0,0 +"1066.71130371094",0,0,0,0,0,0,0,0,0 +"1066.9453125",0,0,0,0,0,0,0,0,0 +"1067.14038085938",0,0,0,0,0,0,0,0,0 +"1067.51098632812",0,0,0,0,0,0,0,0,0 +"1067.7060546875",0,3.04845622616919,0,2.43401236807582,4.25461076040824,0,0,0,0 +"1067.94006347656",3.50214497484334,0,0,0,4.47256901716143,0,0,0,0 +"1068.21325683594",0,0,0,3.37254374205547,0,0,0,0,0 +"1068.40844726562",0,0,0,0,0,0,0,0,0 +"1068.642578125",0,0,0,0,0,0,0,0,0 +"1068.83776855469",0,0,0,0,0,0,0,0,0 +"1069.03295898438",0,0,0,0,0,0,0,0,0 +"1069.30627441406",3.17404523553806,0,0,0,0,0,0,0,0 +"1069.46240234375",0,0,0,0,4.43576264093888,0,0,0,0 +"1069.69677734375",0,0,0,0,3.9923329168388,0,0,0,0 +"1069.95056152344",0,0,0,0,0,0,0,0,0 +"1070.02868652344",0,3.25707880831245,0,0,0,0,0,0,0 +"1070.18493652344",0,0,0,0,5.16173384580452,0,0,0,0 +"1070.24353027344",0,0,0,0,5.16173384580452,0,0,0,0 +"1070.57556152344",0,0,0,0,0,0,0,0,0 +"1070.73193359375",0,0,0,0,0,0,0,0,0 +"1070.88818359375",0,0,0,0,0,0,0,0,0 +"1071.20080566406",0,2.85205732197966,0,2.84337110912406,0,0,0,0,0 +"1071.57214355469",0,0,0,2.62611865236124,4.17811254610654,0,0,0,0 +"1071.826171875",0,0,0,0,4.04393974520728,0,0,0,0 +"1072.15844726562",0,2.51023573083709,0,0,0,0,0,0,0 +"1072.47131347656",0,3.52102989053762,0,0,0,0,0,0,0 +"1072.68640136719",0,0,0,0,0,0,0,0,0 +"1072.8818359375",0,0,0,2.55522765278151,15.7167407629895,0,0,0,0 +"1072.99926757812",0,0,0,0,0,0,0,0,0 +"1073.37084960938",0,2.7021423745391,0,0,0,0,0,0,0 +"1073.84033203125",0,0,0,0,9.9853251205443,0,0,0,0 +"1074.23156738281",0,0,0,0,5.72277783353759,0,0,0,0 +"1074.54467773438",0,0,0,0,0,3.52917836973267,0,0,0 +"1074.76000976562",0,2.52180188170801,5.06414878443845,0,6.05120539210027,0,0,0,0 +"1075.05358886719",0,0,0,0,6.85247112618432,0,0,0,0 +"1075.26892089844",0,0,0,0,0,0,0,0,0 +"1075.50390625",0,0,0,0,0,0,0,0,0 +"1075.85632324219",0,0,5.08333500701099,0,0,0,0,0,0 +"1076.07177734375",0,0,0,0,0,0,0,0,0 +"1076.40466308594",0,0,0,0,0,0,0,0,0 +"1076.77685546875",0,0,0,0,0,0,0,0,0 +"1076.89440917969",0,0,0,3.44234582073362,0,0,0,0,0 +"1077.01196289062",0,0,0,0,0,0,0,0,0 +"1077.36474609375",0,2.61853178514501,0,0,0,0,0,0,0 +"1077.65869140625",0,0,0,0,0,0,0,0,0 +"1077.75671386719",0,0,0,0,0,0,0,0,0 +"1077.87426757812",0,0,0,0,0,0,0,0,0 +"1077.95263671875",0,0,0,0,0,0,0,0,0 +"1078.16833496094",4.25059469259686,0,0,0,0,0,0,0,0 +"1078.40356445312",0,2.80645366561072,0,0,0,0,0,0,0 +"1078.8349609375",0,2.76032717628141,4.63182596542495,2.69700965194097,0,0,0,0,0 +"1079.14868164062",0,2.58397144668662,0,0,3.96864521598888,0,0,0,0 +"1079.59985351562",0,0,0,3.39311045650925,0,0,0,0,0 +"1079.85485839844",0,0,0,2.94770747481412,0,4.8007797740787,0,0,0 +"1080.46313476562",0,2.47619822533908,0,0,0,0,0,0,0 +"1080.81640625",0,0,4.76469147229626,0,0,0,0,0,0 +"1081.16967773438",0,0,0,0,0,0,0,0,0 +"1081.228515625",0,0,0,0,0,0,0,0,0 +"1081.48376464844",0,0,0,0,0,0,0,0,0 +"1081.7783203125",0,0,0,0,0,0,0,0,0 +"1082.11218261719",0,0,0,0,0,0,0,0,0 +"1082.42639160156",0,0,0,2.94661855391254,0,0,0,0,0 +"1082.74072265625",0,2.53439836279054,0,0,0,0,0,0,0 +"1082.87817382812",0,0,0,0,0,0,0,0,0 +"1082.97644042969",3.10419195747485,3.40235146543392,0,0,0,0,0,0,0 +"1083.27111816406",0,0,0,0,0,0,0,0,0 +"1083.330078125",0,0,0,3.12184591918233,0,0,0,0,0 +"1083.60522460938",0,0,0,0,0,0,0,0,0 +"1083.8017578125",0,0,0,0,0,0,0,0,0 +"1083.99829101562",0,0,0,0,0,0,0,0,0 +"1084.19494628906",3.01963879208655,0,0,0,0,0,0,0,0 +"1084.45043945312",0,2.53387552983017,0,0,0,0,0,0,0 +"1084.66674804688",0,0,0,2.72215582441838,0,0,0,0,0 +"1084.88305664062",0,0,3.38459720163331,0,0,0,0,0,0 +"1085.09936523438",0,0,0,0,0,0,0,0,0 +"1085.31567382812",4.44195162525974,0,4.68591493254503,0,5.95781743111442,0,0,0,0 +"1086.12231445312",0,3.09456737978935,0,2.74733393706692,0,4.21301502361371,0,0,0 +"1086.39770507812",0,0,0,0,0,0,0,0,0 +"1086.57482910156",0,0,0,2.82649219010843,0,0,0,0,0 +"1086.88977050781",0,0,0,0,0,0,0,0,0 +"1087.22436523438",0,0,0,0,0,0,0,0,0 +"1087.36218261719",0,0,0,2.53004954013296,0,0,0,0,0 +"1087.63781738281",0,0,0,0,0,0,0,0,0 +"1087.97253417969",0,0,0,2.53004954013296,0,0,0,0,0 +"1088.42553710938",0,0,0,0,0,0,0,0,0 +"1088.56335449219",0,0,0,0,0,0,0,0,0 +"1088.66186523438",0,0,0,2.50490336765556,5.22061211748539,0,0,0,0 +"1089.07556152344",0,2.54427323633509,0,2.81822493664666,0,2.94141361926768,0,0,0 +"1089.68640136719",0,4.49780188044929,4.04310214309638,0,0,0,0,0,0 +"1090.00183105469",0,0,0,0,0,0,0,0,0 +"1090.25805664062",0,0,0,2.4257131744429,0,0,0,0,0 +"1090.51428222656",0,0,0,0,0,0,0,0,0 +"1091.02697753906",0,0,0,0,0,0,0,0,0 +"1091.34252929688",0,0,0,2.85167030275698,0,0,0,0,0 +"1091.59887695312",0,0,0,0,0,0,0,0,0 +"1091.71728515625",0,0,0,2.57579436723529,0,0,0,0,0 +"1091.79614257812",0,0,0,0,0,0,0,0,0 +"1091.89477539062",0,0,0,0,0,0,0,0,0 +"1091.97375488281",0,3.28301209321544,0,0,0,0,0,0,0 +"1092.11181640625",0,0,0,0,0,0,0,0,0 +"1092.23022460938",0,0,0,0,0,0,0,0,0 +"1092.58544921875",0,0,0,0,6.2131708390292,0,0,0,0 +"1093.07885742188",0,2.52180188170801,0,0,0,0,0,0,0 +"1093.197265625",0,0,0,0,0,0,0,0,0 +"1093.25646972656",0,2.59207566728163,0,0,0,0,0,0,0 +"1093.49340820312",0,0,5.65287260676702,0,0,0,0,0,0 +"1093.69079589844",0,0,0,0,5.11367756257873,0,0,0,0 +"1093.84875488281",0,0,9.07317901633976,0,0,3.43389071222411,0,0,0 +"1094.26342773438",0,0,0,0,0,0,0,0,0 +"1094.48071289062",0,0,0,0,0,0,0,0,0 +"1094.81652832031",0,3.18680502273883,0,0,5.08233437140639,0,0,0,0 +"1095.07336425781",0,0,0,0,0,0,0,0,0 +"1095.34997558594",0,0,0,0,0,0,0,0,0 +"1095.44873046875",0,0,0,0,0,0,0,0,0 +"1095.66613769531",0,0,0,0,0,0,0,0,0 +"1096.04162597656",0,0,0,0,0,0,0,0,0 +"1096.2392578125",0,2.80645366561072,0,0,6.11635881438955,0,0,0,0 +"1096.67419433594",0,0,0,0,0,0,0,0,0 +"1096.970703125",0,0,0,0,0,0,0,0,0 +"1097.14868164062",0,0,0,0,4.02079064615456,0,0,0,0 +"1097.42553710938",0,0,0,2.92256130233671,0,0,0,0,0 +"1097.66296386719",0,0,0,0,0,0,0,0,0 +"1097.80139160156",0,0,5.38912450256426,0,0,0,0,0,0 +"1097.95959472656",0,0,0,0,0,0,0,0,0 +"1098.15747070312",0,0,0,0,0,0,0,0,0 +"1098.29602050781",0,0,0,0,4.30158984003962,0,0,0,0 +"1098.39489746094",0,0,0,0,0,0,0,0,0 +"1098.69177246094",0,0,0,0,0,0,0,0,0 +"1098.8896484375",0,0,4.38645762040284,2.69700965194097,0,0,0,0,0 +"1099.22607421875",3.1738334919899,0,0,0,0,0,0,0,0 +"1099.50317382812",0,3.53311887436892,0,0,0,0,0,0,0 +"1099.81994628906",0,0,0,0,0,0,0,0,0 +"1100.11694335938",0,0,0,0,0,0,0,0,0 +"1100.37438964844",0,2.51833995143209,0,0,10.3034692924491,4.11691942161189,0,0,0 +"1101.16674804688",0,0,0,0,0,6.82134030566368,0,0,0 +"1101.56298828125",0,0,0,0,0,0,0,0,0 +"1101.68188476562",0,3.19887867086098,0,0,0,0,0,0,0 +"1101.88012695312",0,0,0,0,0,0,0,0,0 +"1102.09802246094",0,0,0,0,0,0,0,0,0 +"1102.27648925781",0,0,0,0,0,2.92354020918754,0,0,0 +"1102.51428222656",0,0,0,0,0,0,0,0,0 +"1102.79187011719",0,0,0,0,0,0,0,0,0 +"1102.91088867188",0,0,0,0,4.65834864642917,0,0,0,0 +"1103.24792480469",3.48197490855295,0,0,0,4.41261354188616,0,0,0,0 +"1103.7041015625",0,0,0,0,0,0,0,0,0 +"1103.98181152344",0,0,0,0,0,0,0,0,0 +"1104.31896972656",0,0,5.01005981731836,0,5.03946023695474,0,0,0,0 +"1104.65625",0,0,0,0,0,0,0,0,0 +"1105.15246582031",0,3.29510107704675,0,0,7.18199168658127,0,0,0,0 +"1105.80749511719",0,0,0,0,0,0,0,0,0 +"1106.06555175781",3.7257332260181,0,0,0,0,0,0,0,0 +"1106.32373046875",0,0,0,0,0,0,0,0,0 +"1106.50244140625",0,0,0,0,4.68734497754214,0,0,0,0 +"1106.84008789062",0,0,0,2.67644293748719,0,0,0,0,0 +"1107.25720214844",0,0,0,0,0,0,0,0,0 +"1107.55529785156",0,0,0,0,0,0,0,0,0 +"1107.87316894531",0,0,0,0,0,0,0,0,0 +"1107.97253417969",0,0,0,0,0,0,0,0,0 +"1108.21105957031",0,3.05603761380382,0,0,0,0,0,0,0 +"1108.4296875",0,0,3.76283105352672,0,4.71776551990724,0,0,0,0 +"1108.767578125",0,0,0,0,7.90385794626717,0,0,0,0 +"1109.08569335938",0,0,0,0,0,0,0,0,0 +"1109.30432128906",0,0,4.33236865328276,0,0,0,0,0,0 +"1109.62255859375",0,0,4.14192010873323,0,0,0,0,0,0 +"1110.04016113281",0,0,0,0,0,0,0,0,0 +"1110.1396484375",0,0,0,0,0,0,0,0,0 +"1110.35852050781",0,3.64089209571647,0,0,0,0,0,0,0 +"1110.7763671875",0,0,0,0,0,3.16136458748245,0,0,0 +"1110.97534179688",0,0,0,0,0,0,0,0,0 +"1111.31359863281",0,0,0,0,0,3.65916777368799,0,0,0 +"1111.671875",0,0,0,2.55522765278151,5.6129736150142,0,0,0,0 +"1112.07006835938",3.16751527766137,0,0,2.74733393706692,0,0,0,0,0 +"1112.58776855469",0,0,0,0,0,0,0,0,0 +"1112.68725585938",0,0,0,0,0,6.61845480303581,0,0,0 +"1113.10559082031",0,0,3.64834530583606,0,0,0,0,0,0 +"1113.36450195312",0,0,0,0,0,0,0,0,0 +"1113.44421386719",0,0,0,0,0,0,0,0,0 +"1113.90246582031",0,0,0,0,0,0,0,0,0 +"1114.1416015625",0,0,0,0,0,0,0,0,0 +"1114.36071777344",0,0,0,0,0,0,0,0,0 +"1114.57995605469",0,0,0,0,0,0,0,0,0 +"1114.6796875",0,0,0,0,0,0,15.3402729607254,0,0 +"1115.15808105469",0,2.91474971991865,0,0,0,0,0,0,0 +"1115.41723632812",0,3.26054073858836,0,2.92256130233671,0,0,0,0,0 +"1115.83605957031",0,0,0,0,0,0,9.44052031612794,0,0 +"1116.17504882812",0,0,0,0,0,0,0,0,0 +"1116.31469726562",0,0,3.78204164605986,0,4.79252144732843,0,0,0,0 +"1116.59399414062",0,0,0,0,0,0,0,0,0 +"1116.77355957031",0,0,0,0,0,0,0,0,0 +"1117.11279296875",0,0,0,0,0,0,7.83363688777064,0,0 +"1117.45202636719",0,2.78229103365726,0,2.72215582441838,4.61865680835003,0,0,0,0 +"1117.7314453125",3.73068933689906,0,0,0,0,0,0,0,0 +"1118.27038574219",0,0,0,0,0,0,0,0,0 +"1118.51000976562",0,0,0,2.92256130233671,0,0,0,0,0 +"1118.70971679688",0,0,5.14375615754216,0,0,0,0,0,0 +"1118.86938476562",0,0,0,0,3.89785195401868,0,0,0,0 +"1119.12902832031",0,0,0,0,0,0,0,0,0 +"1119.18896484375",0,0,0,0,0,0,0,0,0 +"1119.52856445312",0,0,0,0,0,0,0,0,0 +"1119.6083984375",0,0,0,0,5.35942846536159,0,0,0,0 +"1119.8681640625",0,0,0,3.04265572596967,0,0,0,0,0 +"1120.10791015625",0,0,0,2.60094053971269,0,0,0,0,0 +"1120.36767578125",0,0,3.55669035696278,0,0,0,0,0,0 +"1120.60754394531",0,0,0,0,0,0,0,0,0 +"1120.68737792969",0,0,0,0,0,0,0,0,0 +"1120.78735351562",0,0,5.36360609658064,0,0,0,0,0,0 +"1120.9873046875",0,0,0,0,0,0,0,0,0 +"1121.18713378906",0,2.84218244843511,0,0,0,0,0,0,0 +"1121.40710449219",0,0,0,0,4.20248112848241,0,0,0,0 +"1121.80688476562",0,2.61800895218463,0,0,0,0,0,0,0 +"1122.0869140625",0,0,0,0,0,0,0,0,0 +"1122.30688476562",0,0,0,2.62611865236124,0,4.50422250292876,0,0,0 +"1122.38696289062",0,0,0,0,0,0,0,0,0 +"1122.64697265625",0,0,0,2.62611865236124,0,0,0,0,0 +"1123.04699707031",0,0,0,0,0,0,0,0,0 +"1123.26708984375",0,0,0,0,0,0,0,0,0 +"1123.4873046875",0,0,0,0,0,0,0,0,0 +"1123.74743652344",0,0,0,0,0,0,0,0,0 +"1123.88745117188",0,0,0,0,0,0,0,0,0 +"1123.96752929688",2.91339605470467,0,0,0,0,0,0,0,0 +"1124.26782226562",0,0,0,0,0,0,0,0,0 +"1124.62817382812",0,0,0,0,0,0,0,0,0 +"1124.78833007812",0,0,0,0,0,0,7.39656066661459,0,0 +"1125.02868652344",0,0,0,0,5.44251724144974,0,0,0,0 +"1125.14880371094",0,0,0,0,0,0,0,0,0 +"1125.369140625",0,0,0,0,4.55922413663211,0,0,0,0 +"1125.92993164062",0,0,0,0,0,0,0,0,0 +"1126.33056640625",0,0,0,0,0,0,0,0,0 +"1126.39074707031",0,0,0,3.12184591918233,0,0,0,0,0 +"1126.65124511719",0,0,0,0,3.84624512565021,0,0,0,0 +"1126.97192382812",0,0,0,0,0,0,0,0,0 +"1127.15222167969",0,0,0,0,0,0,0,0,0 +"1127.31262207031",0,0,0,0,4.9902160668855,0,0,0,0 +"1127.53308105469",0,0,0,0,0,0,0,0,0 +"1127.79370117188",0,0,0,0,0,0,0,0,0 +"1128.01428222656",2.97723520083774,0,0,0,5.73112648044439,0,0,0,0 +"1128.27502441406",0,2.52232471466839,0,0,5.12613115466527,0,0,0,0 +"1128.71618652344",0,0,0,0,0,0,0,0,0 +"1129.07727050781",0,0,0,0,0,0,0,0,0 +"1129.31799316406",0,0,0,2.65126482483864,0,0,0,0,0 +"1129.49865722656",0,0,0,0,0,0,0,0,0 +"1129.75952148438",0,0,0,0,0,0,0,0,0 +"1130.20092773438",0,0,0,0,0,0,0,0,0 +"1130.60241699219",0,0,0,2.50490336765556,4.40069855159683,2.87013340958162,0,0,0 +"1131.06420898438",0,0,0,3.49375902676115,0,0,0,0,0 +"1131.3251953125",0,2.90215323883611,6.54386748413014,0,0,0,0,0,0 +"1131.44567871094",0,0,0,0,4.3853594976537,0,0,0,4.39728961883286 +"1131.66662597656",0,0,0,0,0,0,0,0,0 +"1131.80725097656",0,0,0,0,9.64499836993214,0,0,0,0 +"1132.28930664062",0,0,0,0,0,0,0,0,0 +"1132.51025390625",0,0,0,0,4.24217296656155,2.87013340958162,0,0,0 +"1132.85192871094",0,0,0,0,0,0,0,0,0 +"1132.91223144531",0,0,0,0,6.52061950396784,0,0,0,0 +"1133.13317871094",0,0,0,3.26820737636541,0,0,0,0,0 +"1133.41455078125",0,0,0,0,0,0,0,0,0 +"1133.75634765625",0,0,0,0,0,0,0,0,0 +"1133.83666992188",0,0,0,2.62611865236124,5.47596552540017,0,0,0,0 +"1134.35949707031",0,0,0,0,0,0,0,0,0 +"1134.74157714844",0,0,0,0,0,0,0,0,0 +"1135.103515625",0,0,0,0,0,0,0,0,0 +"1135.58642578125",0,3.29405541112599,0,0,6.14305845858495,0,0,0,0 +"1136.10949707031",2.85572551237238,0,0,6.0371969487877,4.82878922175378,0,0,0,0 +"1136.67309570312",0,0,0,0,0,0,0,0,0 +"1136.95483398438",0,4.56755283306253,0,0,0,0,0,0,0 +"1137.21655273438",3.22012237214611,0,0,0,0,0,0,0,0 +"1137.49841308594",0,0,0,0,0,0,0,0,0 +"1137.69982910156",0,0,0,0,0,0,0,0,0 +"1138.02197265625",0,0,0,0,0,0,0,0,0 +"1138.28381347656",0,0,0,0,0,0,0,0,0 +"1138.42492675781",0,2.71421602266125,0,0,0,0,0,0,0 +"1138.74719238281",0,2.43766845935355,0,0,0,0,0,0,0 +"1139.00915527344",0,0,0,0,0,0,0,0,0 +"1139.1904296875",2.6532687336835,3.30665189220852,0,0,0,0,0,0,0 +"1139.71447753906",0,0,0,2.4005670019655,0,0,0,0,0 +"1139.97644042969",0,0,0,0,0,0,0,0,0 +"1140.1982421875",0,0,0,2.40165592286708,0,0,0,0,0 +"1140.44018554688",0,2.329895238006,0,0,0,0,0,0,0 +"1140.80310058594",0,0,0,0,0,0,0,0,0 +"1140.90393066406",0,0,0,0,0,0,0,0,0 +"1141.20642089844",4.56374052746772,0,0,0,0,0,0,0,0 +"1141.56945800781",0,0,0,0,0,0,0,0,0 +"1141.77124023438",0,3.39078531456299,0,0,0,0,0,0,0 +"1141.9931640625",0,0,0,0,9.3108500607981,0,0,0,0 +"1142.55810546875",0,0,0,2.85167030275698,0,0,0,0,0 +"1143.06262207031",3.77805507289453,0,0,0,0,2.8274683057715,0,0,0 +"1143.38562011719",0,0,0,0,0,0,0,0,0 +"1143.50671386719",0,2.56791303532817,0,0,4.15139710367129,0,0,0,0 +"1143.82983398438",0,0,0,0,0,3.97440639941132,0,0,0 +"1144.25390625",0,0,0,0,5.73125296193327,0,0,0,0 +"1144.53662109375",0,0,0,0,4.3134890320891,4.17567601305269,0,0,0 +"1144.7587890625",0,0,0,0,0,3.58177722484534,0,0,0 +"1144.83959960938",0,0,0,0,0,0,0,0,0 +"1145.00122070312",0,3.79477647068417,0,0,0,2.90407460870667,0,0,0 +"1145.20324707031",0,0,0,2.4005670019655,0,3.16749862522481,0,0,0 +"1145.48608398438",0,2.48828720917038,0,0,0,0,0,0,0 +"1145.76904296875",0,0,0,0,0,0,0,0,0 +"1145.95092773438",0,3.25707880831245,0,0,0,0,0,0,0 +"1146.23388671875",0,0,0,0,0,0,0,0,0 +"1146.43603515625",0,0,0,0,0,0,0,0,0 +"1146.79992675781",0,0,0,2.94661855391254,0,0,0,0,0 +"1146.94140625",0,0,0,2.82649219010843,0,0,0,0,0 +"1147.04248046875",0,0,0,0,0,0,0,0,0 +"1147.18408203125",0,0,0,2.50490336765556,0,0,0,0,0 +"1147.4267578125",0,0,0,0,0,0,0,0,0 +"1147.64916992188",0,0,0,2.40165592286708,4.14304845676449,0,0,0,0 +"1147.99304199219",3.99709259868759,2.329895238006,0,0,0,0,0,0,0 +"1148.27624511719",0,0,0,0,0,0,0,0,0 +"1148.51904296875",0,3.06863409488635,0,0,0,0,0,0,0 +"1148.78210449219",3.52070495444253,0,0,0,0,0,0,0,0 +"1149.16662597656",3.38878605305877,0,0,0,0,0,0,0,0 +"1149.47021484375",0,0,0,0,0,0,0,0,0 +"1149.9560546875",0,0,0,0,0,0,0,0,0 +"1150.1787109375",0,0,0,0,0,0,0,0,0 +"1150.50268554688",0,0,0,0,0,0,0,0,0 +"1151.00903320312",0,0,0,0,0,0,0,0,0 +"1151.19128417969",0,2.56843586828855,0,0,0,0,0,0,0 +"1151.53564453125",0,0,0,0,0,0,0,0,0 +"1151.73828125",0,0,0,0,0,0,0,0,0 +"1152.10302734375",0,2.97190419144936,0,2.82649219010843,4.84412827569691,0,0,0,0 +"1152.44750976562",0,0,0,0,0,0,0,0,0 +"1152.54895019531",0,0,0,0,9.20103004403486,0,0,0,0 +"1152.67053222656",0,2.29585773250799,0,0,0,0,0,0,0 +"1152.91369628906",2.90586241707133,0,0,0,0,0,0,0,0 +"1153.11645507812",0,3.30665189220852,0,0,0,3.07142672180877,0,0,0 +"1153.40026855469",0,0,0,2.53004954013296,4.85920976411889,0,0,0,0 +"1153.88696289062",0,0,0,0,0,0,0,0,0 +"1154.02893066406",0,0,0,0,0,0,0,0,0 +"1154.31286621094",0,2.61853178514501,0,0,0,0,0,0,0 +"1154.75915527344",0,0,0,3.4434347416352,0,0,0,0,0 +"1154.94177246094",2.66256986026368,3.58321479122538,0,3.21788309123946,0,4.09906971011752,0,0,0 +"1155.32739257812",0,0,0,0,0,0,0,0,0 +"1155.5302734375",0,2.59606043051793,0,0,0,0,0,0,0 +"1155.79406738281",0,2.43766845935355,0,0,0,0,0,0,0 +"1156.01733398438",0,0,0,2.4257131744429,5.73521562738428,0,0,0,0 +"1156.40307617188",2.82581166963787,0,0,0,0,0,0,0,0 +"1156.64672851562",0,0,0,2.53004954013296,0,0,0,0,0 +"1156.93103027344",0,2.74825352815926,0,0,0,0,0,0,0 +"1157.37780761719",0,0,0,2.62611865236124,0,0,0,0,0 +"1157.45910644531",0,0,0,0,0,0,0,0,0 +"1157.62158203125",0,0,0,2.62611865236124,0,0,0,0,0 +"1157.86535644531",0,0,6.99537652571618,0,0,0,0,0,0 +"1158.25134277344",0,0,0,0,0,0,0,0,0 +"1158.45458984375",0,0,0,0,0,0,0,0,0 +"1158.86096191406",0,3.22253380556321,0,0,0,0,0,0,0 +"1159.20654296875",2.55962015139751,0,0,0,0,0,0,0,0 +"1159.47082519531",0,0,0,0,9.01935535994686,0,0,0,0 +"1159.79602050781",0,0,0,0,0,0,0,0,0 +"1159.97900390625",0,0,0,0,0,0,0,0,0 +"1160.0400390625",0,0,0,0,0,0,0,0,0 +"1160.42639160156",0,0,0,2.50490336765556,0,0,0,0,0 +"1160.71118164062",0,0,0,0,3.71563866813348,0,0,0,0 +"1161.03662109375",0,2.37999115486246,0,2.92256130233671,0,0,0,0,0 +"1161.341796875",0,2.8340782278401,0,0,0,0,0,0,0 +"1161.89123535156",0,0,0,0,0,0,0,0,0 +"1162.11511230469",0,0,0,0,0,0,0,0,0 +"1162.25756835938",0,0,0,0,0,0,0,0,0 +"1162.46105957031",0,3.64141492867684,0,0,0,0,0,0,0 +"1162.54248046875",0,0,0,0,0,0,0,0,0 +"1162.80712890625",0,2.30625543901292,0,0,0,0,0,0,0 +"1163.33654785156",4.07036540500072,0,0,0,0,0,0,0,0 +"1163.703125",2.3539747507745,0,0,2.40165592286708,0,0,0,0,0 +"1164.130859375",2.51291985187633,0,0,0,0,0,0,0,0 +"1164.37524414062",0,2.77189332715234,4.55221859232123,0,0,0,0,0,0 +"1164.78271484375",0,0,0,0,0,0,0,0,0 +"1164.90502929688",0,3.15276751724082,0,0,0,0,0,0,0 +"1165.19030761719",3.03349064404841,0,0,0,0,0,0,0,0 +"1165.41442871094",0,0,0,0,0,0,0,0,0 +"1165.76098632812",0,0,0,0,0,0,0,0,0 +"1165.82214355469",0,0,0,0,0,0,0,0,0 +"1166.02600097656",0,0,0,0,3.85035007082995,0,0,0,0 +"1166.25024414062",0,0,0,0,0,0,0,0,0 +"1166.49487304688",0,0,0,0,0,0,0,0,0 +"1166.80078125",0,0,0,0,0,0,0,0,0 +"1167.1474609375",0,0,0,0,0,0,0,0,0 +"1167.59631347656",0,0,0,2.60094053971269,6.33718673475949,0,0,0,0 +"1168.04516601562",0,0,0,0,0,0,0,0,0 +"1168.37158203125",0,0,0,0,0,0,0,0,0 +"1168.59606933594",0,0,0,0,0,0,0,0,0 +"1168.90222167969",0,0,0,0,0,0,0,0,0 +"1169.10632324219",3.96535223746651,2.76034251199056,0,0,0,0,0,0,0 +"1169.47387695312",0,0,0,0,0,0,0,0,0 +"1169.59631347656",0,0,0,0,0,0,0,0,0 +"1169.67797851562",0,0,0,0,0,0,0,0,0 +"1169.984375",0,0,0,0,0,0,0,0,0 +"1170.29064941406",2.606314417053,0,0,2.82649219010843,0,0,0,0,0 +"1170.55615234375",0,0,0,0,0,0,0,0,0 +"1170.78088378906",0,0,0,2.62611865236124,0,4.04647085500485,0,0,0 +"1171.04650878906",0,0,0,0,0,0,0,0,0 +"1171.10778808594",2.56982365463343,0,0,0,0,0,0,0,0 +"1171.41418457031",0,0,0,2.55522765278151,4.15496344705382,0,0,0,0 +"1171.67993164062",0,0,0,0,6.12703852311588,0,0,0,0 +"1172.27258300781",0,0,0,2.94770747481412,5.75123556285335,0,133.034147687233,0,0 +"1172.84497070312",0,0,0,0,4.44767763122821,0,0,0,0 +"1173.00854492188",4.93351095135307,0,2.93308816004727,0,4.09554657357575,0,0,0,0 +"1173.49938964844",0,0,0,3.48917956873753,5.95781743111442,0,53.3393243667295,0,0 +"1173.80615234375",0,0,0,0,0,0,0,0,0 +"1173.88806152344",0,0,0,0,0,0,0,0,0 +"1174.0107421875",0,0,0,0,0,3.96905660757643,0,0,0 +"1174.15393066406",4.59614632516309,0,0,0,0,0,0,0,0 +"1174.419921875",0,2.58397144668662,0,0,0,0,0,0,0 +"1174.52221679688",0,0,0,2.69700965194097,0,0,0,0,0 +"1174.76770019531",0,0,0,0,0,0,0,0,0 +"1174.99279785156",2.40500799826351,0,0,0,0,0,18.8856753437931,0,0 +"1175.42260742188",0,0,0,0,0,0,0,0,0 +"1175.48400878906",0,2.86863856629848,0,0,0,0,0,0,0 +"1175.79113769531",0,3.43689646818315,0,0,4.41261354188616,0,0,0,0 +"1175.97534179688",0,3.39836670219762,5.54120060196872,2.69700965194097,0,0,0,0,0 +"1176.466796875",0,0,0,0,0,0,0,0,0 +"1176.75341796875",0,0,0,0,0,0,0,0,0 +"1176.89685058594",0,0,0,0,4.40069855159683,0,0,0,0 +"1177.04016113281",0,0,0,2.4257131744429,0,0,0,0,0 +"1177.32702636719",0,0,0,0,0,0,0,0,0 +"1177.44995117188",2.22812004660993,0,0,0,0,0,0,0,0 +"1177.94165039062",3.43118964430758,0,6.1456165763117,2.50490336765556,7.46741862920342,0,0,0,0 +"1178.47448730469",0,0,0,2.72215582441838,0,0,0,0,0 +"1178.67944335938",0,0,0,0,0,2.94141361926768,0,0,0 +"1179.04833984375",0,0,0,0,0,0,0,0,0 +"1179.19189453125",0,0,0,0,0,0,0,0,0 +"1179.41735839844",0,0,0,0,0,0,0,0,0 +"1179.62243652344",2.9951720175238,0,0,0,0,0,0,0,0 +"1179.97106933594",0,0,0,0,0,0,0,0,0 +"1180.27868652344",0,0,0,0,0,0,0,0,0 +"1180.70947265625",0,0,0,0,0,0,0,0,0 +"1181.09924316406",0,2.56843586828855,0,0,0,2.90488255319992,0,0,0 +"1181.42761230469",0,0,0,0,0,0,0,0,0 +"1181.48913574219",0,2.6981576113028,0,0,0,0,0,0,0 +"1181.6943359375",0,0,0,0,4.1306106629178,0,0,0,0 +"1182.20751953125",0,0,0,0,0,0,0,0,0 +"1182.39221191406",0,3.12860488528736,0,0,0,0,0,0,0 +"1182.6796875",0,0,0,2.84337110912406,0,0,0,0,0 +"1182.7412109375",0,0,0,0,0,0,0,0,0 +"1182.84387207031",0,0,0,0,0,0,0,0,0 +"1183.15197753906",0,0,0,0,0,0,0,0,0 +"1183.4189453125",0,0,0,0,0,0,0,0,0 +"1183.64489746094",0,0,0,0,0,0,0,0,0 +"1183.87084960938",2.16757392899258,0,0,0,0,0,0,0,0 +"1184.076171875",0,0,0,0,0,0,0,0,0 +"1184.36389160156",0,0,0,0,0,0,0,0,0 +"1184.63098144531",0,0,0,3.54777110732526,0,0,0,0,0 +"1184.77478027344",0,0,0,0,5.20088708208646,0,0,0,0 +"1184.89807128906",0,2.14197335754029,0,0,0,0,0,0,0 +"1185.16528320312",0,2.14197335754029,0,0,0,0,0,0,0 +"1185.43249511719",0,0,0,0,0,0,0,0,0 +"1185.51477050781",0,0,0,0,0,0,0,0,0 +"1185.82312011719",0,0,0,2.40165592286708,4.75745735798639,0,0,0,0 +"1186.58386230469",0,0,0,0,3.67648543185154,0,0,0,0 +"1187.20092773438",2.29817903435563,0,0,6.2940161234906,4.04393974520728,0,0,0,0 +"1187.69470214844",0,0,0,0,0,0,0,0,0 +"1187.85925292969",0,0,0,0,0,0,0,0,0 +"1188.37377929688",2.7808909267949,0,0,2.81822493664666,0,0,0,0,0 +"1189.25891113281",2.06962863843422,0,0,0,4.54678634278542,0,0,0,0 +"1189.65014648438",0,0,0,0,0,0,0,0,0 +"1189.79431152344",0,0,0,0,0,0,8.62710096013781,0,0 +"1189.89721679688",2.57002936431591,0,0,2.67644293748719,0,0,0,0,0 +"1190.16491699219",0,0,0,0,0,0,0,0,0 +"1190.24731445312",2.33582619054027,0,0,0,0,0,0,0,0 +"1190.3916015625",2.09661256459113,2.41402866036047,0,0,0,0,0,0,0 +"1190.74169921875",0,0,0,0,0,0,0,0,0 +"1190.86535644531",0,0,3.9349242088562,2.4005670019655,4.34074307632156,0,0,0,0 +"1191.09204101562",3.44003104409595,0,5.36360609658064,0,0,0,0,0,0 +"1191.50415039062",0,0,0,0,0,0,0,0,0 +"1191.97814941406",0,0,0,0,0,0,0,0,0 +"1192.36987304688",0,0,0,0,0,0,0,0,0 +"1192.45227050781",0,0,0,0,0,0,0,0,0 +"1192.59655761719",0,2.94826439245628,0,0,0,0,0,0,0 +"1192.90588378906",0,3.98720594734656,0,0,0,0,0,0,0 +"1193.27709960938",0,0,0,2.80134601763103,0,0,0,0,0 +"1193.56579589844",0,0,0,0,0,0,0,0,0 +"1193.833984375",0,0,0,0,0,0,0,0,0 +"1193.97839355469",0,2.67568625667572,3.23171463883697,3.39311045650925,4.19056613819308,0,0,0,0 +"1194.39099121094",0,2.6762090896361,0,0,0,0,0,0,0 +"1194.70056152344",0,0,0,0,0,0,0,0,0 +"1194.82434082031",0,0,3.21250404630383,0,3.84624512565021,0,0,0,0 +"1195.03076171875",0,0,0,0,0,0,0,0,0 +"1195.27844238281",0,0,0,0,3.35941846354113,0,0,0,0 +"1195.48486328125",0,0,3.09718746526068,0,0,0,0,0,0 +"1196.18676757812",0,2.23765759505653,0,0,3.38202896079664,0,0,0,0 +"1196.55847167969",0,0,3.06045231685998,0,0,0,0,0,0 +"1196.95092773438",0,0,0,0,0,0,0,0,0 +"1197.38464355469",2.33562048085779,0,0,2.62611865236124,0,0,0,0,0 +"1197.83923339844",0,0,0,0,5.66047549820293,0,0,0,0 +"1198.25244140625",0,0,0,0,0,0,0,0,0 +"1198.41784667969",0,0,0,0,0,0,0,0,0 +"1198.54187011719",0,0,0,0,0,0,0,0,0 +"1198.64514160156",0,0,0,0,0,0,0,0,0 +"1198.87255859375",0,0,0,0,0,0,0,0,0 +"1199.07934570312",0,0,0,0,0,0,0,0,0 +"1199.5341796875",0,0,0,2.84337110912406,0,0,0,0,0 +"1199.76159667969",0,0,0,0,0,0,22.311442390767,0,0 +"1199.94775390625",0,2.34595364936445,0,2.50490336765556,0,0,0,0,0 +"1200.48547363281",0,3.16485650107212,3.06045231685998,0,0,0,0,0,0 +"1200.81652832031",0,0,0,0,0,0,0,0,0 +"1201.00268554688",2.55098446129162,0,0,4.03523112068457,0,0,10.3660534365057,0,0 +"1201.14758300781",0,2.22558394693437,0,0,0,0,0,0,0 +"1201.43725585938",0,0,0,0,0,0,0,0,0 +"1201.80969238281",0,0,0,0,0,0,0,0,0 +"1202.07885742188",0,0,0,0,0,0,0,0,0 +"1202.24438476562",2.40500799826351,0,0,3.05204384050417,0,0,8.31253175015364,0,0 +"1202.82409667969",0,0,0,0,0,0,0,0,0 +"1202.98974609375",0,0,4.08149895820205,0,0,0,0,0,0 +"1203.30041503906",0,0,0,0,0,0,0,0,0 +"1203.54895019531",0,0,0,0,5.50603906010754,0,0,0,0 +"1203.61108398438",0,0,0,0,0,0,0,0,0 +"1203.96325683594",0,0,0,2.55522765278151,0,0,0,0,0 +"1204.19104003906",0,2.17548803007792,0,0,0,0,0,0,0 +"1204.48120117188",0,0,0,0,0,0,0,0,0 +"1204.7919921875",0,0,0,0,0,0,0,0,0 +"1204.85412597656",0,0,0,0,0,0,0,0,0 +"1205.14428710938",0,0,0,0,0,0,0,0,0 +"1205.47595214844",0,0,0,0,0,0,0,0,0 +"1205.70397949219",0,3.44846261905408,0,0,0,0,0,0,0 +"1206.09790039062",2.90627987030198,0,0,0,0,0,0,0,0 +"1206.55407714844",1.9422121550053,0,0,0,0,0,0,0,0 +"1206.76147460938",0,0,0,0,0,0,0,0,0 +"1206.88586425781",0,0,0,0,0,0,0,0,0 +"1207.03100585938",0,3.16433366811174,0,0,0,0,0,0,0 +"1207.36291503906",0,0,0,0,0,0,0,0,0 +"1208.02685546875",0,0,0,0,0,0,0,0,0 +"1208.10986328125",0,3.57923002798908,0,0,0,0,0,0,0 +"1208.50415039062",0,4.00915446901326,0,2.57579436723529,0,0,0,0,0 +"1208.79479980469",0,2.54427323633509,0,0,0,0,0,0,0 +"1209.27221679688",0,0,0,0,0,0,0,0,0 +"1209.41760253906",0,0,0,0,0,0,0,0,0 +"1209.58361816406",0,0,0,0,0,0,0,0,0 +"1209.85363769531",0,3.15224468428044,0,2.82649219010843,0,0,0,0,0 +"1210.3935546875",0,0,0,0,0,0,0,0,0 +"1210.76745605469",3.34229749708576,0,0,0,3.33452707760791,0,0,0,0 +"1210.95446777344",2.34942402539281,0,0,0,0,0,0,0,0 +"1211.20373535156",0,0,0,0,4.04514343029058,0,0,0,0 +"1211.49462890625",0,0,0,0,0,0,0,0,0 +"1211.76489257812",0,2.43819129231393,0,0,0,0,0,0,0 +"1212.07666015625",0,0,0,0,0,0,0,0,0 +"1212.28442382812",0,2.3338800012423,0,0,5.3197208290426,0,0,0,0 +"1212.51318359375",2.12542435485309,2.28429158163707,0,0,0,0,0,0,0 +"1212.99133300781",0,0,0,3.78911275583505,0,0,0,0,0 +"1213.53198242188",1.90048003409646,0,0,0,0,3.76778699393506,0,0,0 +"1213.7607421875",0,2.22558394693437,0,0,0,0,0,0,0 +"1214.05200195312",0,0,0,0,3.39448255288318,0,0,0,0 +"1214.26000976562",0,0,0,0,0,0,0,0,0 +"1214.53051757812",0,0,0,0,0,0,0,0,0 +"1214.75939941406",0,0,0,0,0,0,0,0,0 +"1214.94665527344",0,0,0,0,3.50496765293252,4.65208531696422,0,0,0 +"1215.2587890625",2.15418180382252,0,0,3.49375902676115,0,0,0,0,0 +"1215.63354492188",0,0,3.83613061317995,0,0,0,0,0,0 +"1215.86242675781",0,0,0,2.60094053971269,0,3.23181315408948,0,0,0 +"1216.21643066406",0,0,0,0,4.11527160897468,0,0,0,0 +"1216.50793457031",0,2.26182022700999,0,2.33076492328735,0,0,0,0,0 +"1216.79943847656",0,3.10267160038436,0,3.34739756957807,0,0,0,0,0 +"1217.04931640625",2.51747057725802,2.27169510055454,0,2.4005670019655,6.04038340364521,0,0,0,0 +"1217.65344238281",0,0,0,0,0,0,0,0,0 +"1217.92431640625",0,0,0,2.69700965194097,0,0,0,0,0 +"1218.13269042969",1.95626971664965,0,0,0,4.4601154250749,0,0,0,0 +"1218.54943847656",0,0,0,0,0,0,0,0,0 +"1218.71618652344",3.00426743442149,0,0,0,0,0,0,0,0 +"1218.82043457031",0,0,0,0,0,0,0,0,0 +"1219.09130859375",0,0,0,0,0,0,0,0,0 +"1219.25817871094",0,0,0,2.82649219010843,0,0,0,0,0 +"1219.52917480469",0,0,0,0,0,0,0,0,0 +"1219.69592285156",0,0,0,0,0,0,0,0,0 +"1219.92529296875",0,0,5.54120060196872,0,0,0,0,0,0 +"1220.05041503906",0,3.26106357154874,0,0,3.33452707760791,0,0,0,0 +"1220.61352539062",4.03276052237724,2.18756167820007,0,0,3.79820464066427,2.92273226469429,7.83404409794039,0,0 +"1221.23937988281",0,0,0,3.14699209165973,3.57561863517397,0,0,0,0 +"1221.74011230469",0,0,0,0,0,0,0,0,0 +"1221.802734375",0,0,0,2.72215582441838,0,0,0,0,0 +"1222.05322265625",0,0,0,2.4005670019655,0,0,0,0,0 +"1222.34533691406",2.19440045289385,0,0,0,0,0,0,0,0 +"1222.6376953125",0,2.46412457721692,4.61261537289181,2.40165592286708,0,0,0,0,0 +"1223.11779785156",0,0,0,0,0,0,0,0,0 +"1223.34753417969",0,0,0,0,0,0,0,0,0 +"1223.63989257812",0,0,0,0,0,0,0,0,0 +"1223.953125",0,0,0,0,0,0,0,0,0 +"1224.49621582031",3.09990128306817,2.51023573083709,0,4.33994102412182,0,0,0,0,0 +"1224.83056640625",0,0,0,0,0,2.87013340958162,0,0,0 +"1225.08129882812",0,0,0,0,0,0,0,0,0 +"1225.29028320312",2.34037691592196,0,0,2.53004954013296,0,0,0,0,3.56201238590637 +"1225.62463378906",0,0,0,0,0,0,10.0699997506903,0,0 +"1225.95910644531",2.00751470768683,0,0,3.59351593442759,7.79518110448001,0,0,0,0 +"1226.52355957031",3.48243463534476,0,0,5.34827447677962,0,0,0,0,0 +"1226.83728027344",0,2.53439836279054,0,0,0,0,0,0,2.853220959765 +"1227.13000488281",1.89572359903229,2.43766845935355,0,0,3.29946298826586,0,0,0,0 +"1227.59020996094",0,2.43766845935355,0,0,0,0,0,0,0 +"1227.8203125",0,0,2.78018122729033,0,0,2.92354020918754,0,0,0 +"1228.05041503906",0,3.51117035270222,0,0,3.14874744834017,0,0,0,0 +"1228.23864746094",0,0,0,2.40165592286708,3.20035427670865,0,0,0,0 +"1228.67810058594",0,0,0,0,5.4668858238256,0,0,0,0 +"1229.01293945312",0,2.94878722541665,0,0,0,0,0,0,0 +"1229.53625488281",0,0,6.0119202360879,3.14808101256131,4.98664972350297,3.43389071222411,0,0,0 +"1229.99694824219",0,0,0,0,0,0,0,0,0 +"1230.1015625",3.21148668204023,0,0,3.32221945692952,0,0,0,0,0 +"1230.2900390625",0,0,0,0,9.12256901668381,0,0,0,0 +"1230.64611816406",1.89353865685481,3.29457824408637,0,0,0,0,0,0,0 +"1230.98120117188",0,0,0,0,0,0,0,0,0 +"1231.29541015625",0,0,0,3.52262493484786,0,0,0,0,0 +"1231.81921386719",0,0,0,0,3.47044216538767,0,0,0,0 +"1232.23828125",0,2.52232471466839,0,0,0,0,0,0,0 +"1232.53173828125",1.94696859006947,0,0,0,0,0,0,0,0 +"1232.74133300781",0,0,2.68138763161408,0,0,0,0,0,0 +"1232.95092773438",1.94586050373124,0,0,0,0,0,0,0,0 +"1233.41223144531",0,0,0,0,0,4.21301502361371,0,0,0 +"1233.76867675781",0,0,0,0,0,0,0,0,0 +"1234.16711425781",3.26768778395837,0,0,0,0,0,0,0,0 +"1234.43981933594",0,0,0,0,0,0,0,0,0 +"1234.60766601562",0,0,0,2.92256130233671,0,0,0,0,2.84619013119548 +"1234.88037109375",0,0,0,0,3.21279207055533,0,0,0,0 +"1235.00622558594",0,2.38809537545747,0,0,3.14874744834017,0,0,0,0 +"1235.46789550781",1.69462288992529,0,0,0,0,0,0,0,0 +"1235.82470703125",1.70325858003117,0,0,0,0,0,0,0,0 +"1236.18151855469",0,3.15276751724082,0,0,0,0,0,0,0 +"1236.66430664062",0,1.9495438808779,0,0,3.86952070619181,0,0,0,0 +"1236.91625976562",0,0,0,2.45089128709145,0,0,0,0,0 +"1237.25219726562",0,0,0,0,3.664031839765,0,0,0,0 +"1237.48327636719",0,0,2.85348078694355,0,0,0,0,0,0 +"1237.71423339844",0,2.53439836279054,3.40297696081396,2.62611865236124,3.23540256781085,0,0,0,0 +"1238.02941894531",2.6643433830762,0,2.7069060375977,0,0,0,0,0,2.60930264090603 +"1238.51257324219",0,0,0,0,0,0,0,0,0 +"1238.70166015625",0,1.99963979773436,0,0,0,0,0,0,0 +"1238.80676269531",0,0,0,0,0,0,0,0,0 +"1238.95385742188",0,0,0,2.65126482483864,0,0,0,0,0 +"1239.18493652344",0,0,0,0,0,0,0,0,0 +"1239.50024414062",0,0,0,0,0,0,0,0,0 +"1239.75256347656",0,2.03367730323236,0,0,0,0,0,0,0 +"1239.96276855469",1.83972217293094,0,0,2.40165592286708,0,0,0,0,0 +"1240.25708007812",0,0,0,0,0,0,0,0,0 +"1240.59350585938",0,0,0,2.69700965194097,0,0,0,0,0 +"1240.82482910156",0,0,0,0,0,0,0,0,0 +"1241.09826660156",0,0,0,0,4.7450195641397,0,0,0,0 +"1241.47680664062",1.74607359064495,0,0,2.80134601763103,0,0,0,0,0 +"1241.91857910156",2.16191511727266,0,0,0,0,0,0,0,0 +"1242.40258789062",1.74607359064495,0,0,0,0,0,0,0,0 +"1242.99194335938",0,1.99963979773436,0,0,0,0,0,0,0 +"1243.22338867188",0,0,0,3.33909837594515,3.52151039195894,0,0,0,0 +"1243.68664550781",1.72595183178141,0,0,0,0,0,0,0,0 +"1243.85498046875",1.62952604692624,0,0,0,0,0,0,0,0 +"1244.06555175781",2.43443691757292,0,0,2.85167030275698,0,0,0,0,0 +"1244.36047363281",0,0,0,0,0,0,0,0,0 +"1244.57104492188",2.05901371583334,0,0,0,0,0,0,0,0 +"1244.99230957031",0,0,0,2.40165592286708,0,0,0,0,0 +"1245.392578125",0,0,0,0,0,0,0,0,0 +"1245.66650390625",0,2.8300934646038,0,0,0,0,0,0,0 +"1245.79296875",0,0,0,0,0,0,0,0,0 +"1246.02478027344",0,3.1764073162339,0,0,0,0,0,0,0 +"1246.08801269531",0,0,0,0,0,0,0,0,0 +"1246.193359375",1.92725825057089,0,0,0,0,0,0,0,0 +"1246.53063964844",0,0,0,0,0,0,0,0,0 +"1246.59387207031",0,0,0,3.61866210690499,0,0,0,0,0 +"1246.76245117188",0,3.20286343409728,0,0,0,0,0,0,0 +"1247.07873535156",0,0,0,0,0,0,0,0,0 +"1247.35278320312",0,0,0,0,0,0,0,0,0 +"1247.60583496094",0,0,0,0,0,0,0,0,0 +"1247.83776855469",0,0,0,0,0,0,0,0,0 +"1248.04870605469",0,2.80645366561072,0,0,5.29589084846394,0,0,0,0 +"1248.21740722656",2.85482916958231,0,2.87899919292718,0,0,0,0,0,0 +"1248.85034179688",0,2.3178062541747,3.98901317597629,2.42680209534448,6.5829218393025,0,0,0,2.7520962455629 +"1249.29345703125",1.72793106427641,0,0,0,0,0,0,0,0 +"1249.60998535156",0,0,0,0,0,0,0,0,0 +"1250.17980957031",2.40976443332768,0,0,3.05204384050417,0,0,0,0,0 +"1250.55981445312",0,0,2.7069060375977,0,0,0,0,0,0 +"1250.96105957031",0,2.85654958246718,0,3.93916200845629,5.16119524400732,0,0,0,0 +"1251.48901367188",1.92725825057089,0,0,0,0,0,0,0,0 +"1251.97485351562",0,0,0,0,0,0,0,0,0 +"1252.37622070312",0,0,0,0,0,0,0,0,0 +"1252.48181152344",0,0,0,0,0,0,0,0,0 +"1252.7353515625",0,0,0,0,0,0,0,0,0 +"1252.81994628906",0,0,0,0,0,0,0,0,0 +"1253.45397949219",1.87303034728206,0,0,3.34739756957807,0,0,0,0,0 +"1253.91906738281",0,0,0,0,0,0,0,0,0 +"1254.19384765625",0,0,2.76099500471779,0,0,0,0,0,0 +"1254.51098632812",2.58863161747626,0,0,0,0,0,0,0,0 +"1254.70141601562",0,0,0,0,6.07953663992714,0,0,0,2.77858694038695 +"1254.91284179688",0,0,0,3.24306120388801,0,0,0,0,0 +"1255.18786621094",0,0,0,0,0,0,0,0,3.67581764639999 +"1255.25122070312",1.90911572420235,0,0,0,0,2.84612596175911,0,0,0 +"1255.46276855469",0,0,0,2.84337110912406,0,0,0,0,0 +"1255.80126953125",0,0,0,0,0,0,0,0,4.87624119655476 +"1256.16101074219",3.04253775351926,0,5.38912450256426,2.89738318968817,3.96864521598888,0,0,0,3.31374218628165 +"1256.66882324219",2.46167486083915,0,0,0,0,0,0,0,0 +"1256.88049316406",0,0,0,0,0,0,0,0,0 +"1257.13452148438",2.54127191534649,0,0,0,5.47880081411493,0,0,0,0 +"1257.45202636719",0,0,0,0,3.61478766969576,0,0,0,0 +"1257.83312988281",0,0,0,0,0,0,0,0,0 +"1257.93908691406",0,0,0,0,0,0,0,0,0 +"1258.34143066406",0,0,0,0,4.69751768095096,0,0,0,0 +"1258.61669921875",0,0,0,0,0,0,0,0,0 +"1258.72265625",0,0,0,0,0,0,0,0,2.92138054504382 +"1258.95568847656",0,0,2.8718361761636,2.67644293748719,0,0,0,0,0 +"1259.31579589844",0,0,0,0,0,0,0,0,0 +"1259.57006835938",2.23742117319011,0,0,0,0,0,0,0,0 +"1260.03625488281",0,0,0,0,0,0,0,0,0 +"1260.22692871094",0,0,0,0,0,0,0,0,0 +"1260.29052734375",0,0,0,0,0,0,0,0,0 +"1260.48132324219",0,0,3.09718746526068,0,0,0,0,0,0 +"1260.96887207031",0,0,0,2.50490336765556,0,0,0,0,0 +"1261.18090820312",0,0,0,0,4.71656183482394,3.51049701515928,0,0,2.65985659135685 +"1261.60498046875",0,0,0,0,0,0,0,0,0 +"1261.66857910156",1.75627709388087,0,0,0,0,0,0,0,0 +"1261.90185546875",0,0,0,0,0,0,0,0,0 +"1262.19873046875",0,0,4.76552230564875,0,0,0,0,0,0 +"1262.72912597656",0,2.62559033981926,0,0,0,0,0,0,0 +"1262.98376464844",0,0,0,0,0,0,0,0,0 +"1263.08984375",0,2.17548803007792,0,0,3.32381577240188,0,0,0,0 +"1263.34448242188",0,0,0,0,0,0,0,0,0 +"1263.556640625",0,0,0,0,0,0,0,0,0 +"1263.74768066406",0,0,0,0,0,0,0,0,0 +"1264.00231933594",0,0,0,0,0,0,0,0,0 +"1264.21459960938",0,0,0,0,6.53131501093402,0,0,0,0 +"1264.46936035156",0,0,3.17762567171688,0,0,0,0,0,0 +"1264.89404296875",0,2.91474971991865,0,2.33076492328735,0,0,0,4.85493496805326,0 +"1265.29748535156",1.62932033724376,0,0,0,0,0,0,0,5.632515716037 +"1265.70092773438",0,0,0,0,0,0,0,0,0 +"1265.93469238281",0,0,0,0,0,0,0,0,0 +"1266.25329589844",2.55961411753182,0,0,0,4.85247692260371,0,0,0,0 +"1266.57202148438",0,0,0,0,0,0,0,0,0 +"1266.720703125",0,0,0,3.32221945692952,0,0,0,0,0 +"1267.01818847656",0,0,0,2.69700965194097,0,0,0,0,0 +"1267.29455566406",2.26664438281703,0,0,0,0,0,0,0,0 +"1267.5283203125",0,0,0,0,0,0,0,0,0 +"1267.76208496094",0,0,0,0,0,0,0,0,0 +"1268.01721191406",0,0,0,0,0,0,0,0,0 +"1268.12353515625",0,0,0,0,0,0,0,0,0 +"1268.27233886719",0,0,0,0,0,0,0,0,0 +"1268.57006835938",0,0,0,0,4.87575250314531,0,0,0,0 +"1268.86779785156",0,3.3071747251689,0,0,0,0,0,0,0 +"1269.14416503906",0,0,0,0,0,0,0,0,0 +"1269.35693359375",0,0,2.74180878214525,0,0,0,0,0,5.32465508455064 +"1269.505859375",0,3.10665636362066,0,0,4.34909172322836,0,0,0,0 +"1269.78234863281",0,1.9495438808779,5.76735835445768,0,0,0,0,0,0 +"1270.01635742188",0,1.9495438808779,6.59710124793714,0,0,0,0,0,4.99552794005513 +"1270.42065429688",0,0,0,0,0,0,0,0,0 +"1270.63354492188",0,1.99963979773436,0,2.92256130233671,0,0,0,0,0 +"1270.97399902344",0,0,0,0,0,0,0,0,0 +"1271.2294921875",0,2.91422688695827,0,0,0,0,0,0,0 +"1271.71911621094",1.85468211123104,0,0,2.33076492328735,4.57060052512423,0,0,0,0 +"1272.03845214844",0,2.28378408438584,0,0,0,0,0,0,0 +"1272.2939453125",0,3.50666275650554,0,0,0,0,0,0,0 +"1272.634765625",2.73353122466512,0,0,0,0,0,0,0,0 +"1272.78381347656",0,2.07978845685253,0,0,0,0,0,0,0 +"1273.06079101562",0,0,0,0,0,0,0,0,0 +"1273.29504394531",0,0,0,0,0,0,0,0,0 +"1273.52941894531",0,3.64089209571647,5.7069372039265,0,3.40638174493266,0,0,0,0 +"1273.97692871094",2.13447146432394,3.39130814752337,0,2.33076492328735,0,0,0,0,0 +"1274.29650878906",0,2.09135460772345,0,0,0,0,0,0,0 +"1274.57360839844",0,0,0,0,3.4538836281214,0,0,0,0 +"1274.89331054688",0,1.9754771657809,0,3.56465002634089,0,0,0,0,4.14957581367843 +"1275.40502929688",0,0,0,0,3.47044216538767,0,0,0,0 +"1275.49035644531",0,0,0,0,3.46990356359047,0,0,0,0 +"1275.83142089844",0,0,0,0,0,0,0,0,2.76477679185441 +"1276.08740234375",1.64725715392982,0,0,0,0,0,9.41540852539788,0,0 +"1276.62060546875",0,0,0,0,0,0,0,0,0 +"1276.6845703125",0,0,0,0,0,0,0,0,0 +"1276.94067382812",1.86670609908785,3.34068939770653,0,0,0,0,0,0,0 +"1277.28198242188",2.19956830732299,0,2.95144354926732,2.33076492328735,5.58860503263833,0,0,0,3.84704320074983 +"1277.73010253906",0,0,0,0,0,0,0,0,0 +"1278.09289550781",0,0,0,0,5.91029974968583,0,0,0,0 +"1278.47717285156",0,0,0,0,0,0,0,0,0 +"1278.58386230469",0,0,0,0,0,0,0,0,0 +"1278.69067382812",0,0,0,0,0,0,0,0,3.87353389557388 +"1278.86145019531",0,0,0,0,0,0,0,0,0 +"1279.24572753906",0,2.78398231098364,0,3.32221945692952,0,0,0,0,0 +"1279.501953125",0,0,0,2.43401236807582,0,0,0,0,0 +"1279.80102539062",2.13902218970563,2.43766845935355,0,0,0,0,0,0,0 +"1280.07873535156",0,0,0,0,0,0,0,0,0 +"1280.31359863281",2.12972106312546,0,0,0,0,0,0,0,0 +"1280.46313476562",0,0,0,0,0,0,0,0,0 +"1280.869140625",2.48956116365181,0,0,0,0,0,0,0,0 +"1281.0400390625",2.36715513239639,1.9754771657809,0,0,0,0,0,0,0 +"1281.4033203125",0,0,0,0,0,0,0,0,0 +"1281.65979003906",1.74566217127999,0,0,0,3.38323264587994,0,0,0,0 +"1282.08740234375",0,0,0,0,0,0,0,0,0 +"1282.21557617188",0,0,0,2.62611865236124,0,0,0,0,0 +"1282.365234375",0,0,0,0,0,0,0,0,0 +"1282.53625488281",0,0,4.98454141133474,0,0,0,0,0,0 +"1282.771484375",0,0,0,0,0,0,0,0,0 +"1283.13500976562",0,0,0,0,0,0,0,0,0 +"1283.58422851562",0,0,0,0,0,0,0,0,0 +"1283.79809570312",0,0,0,0,0,0,0,0,0 +"1284.11901855469",0,0,0,0,5.41708725371931,4.33687038982666,0,0,0 +"1284.50415039062",0,0,0,0,0,0,0,0,0 +"1284.76086425781",0,0,0,0,0,0,0,0,0 +"1284.84643554688",0,0,0,0,3.35941846354113,0,0,0,0 +"1285.16748046875",0,0,0,0,0,0,0,0,0 +"1285.42431640625",0,0,0,0,0,0,0,0,0 +"1285.8310546875",0,0,0,0,3.65211684947567,0,0,0,0 +"1286.17358398438",2.1483233162858,0,0,0,0,0,0,0,0 +"1286.708984375",2.13038649959974,2.03367730323236,0,0,0,0,0,0,0 +"1286.94458007812",0,0,0,0,0,0,0,0,0 +"1287.13732910156",1.9041535794557,0,0,0,0,0,0,0,3.13177734050922 +"1287.28723144531",0,2.91422688695827,0,0,0,0,0,0,0 +"1287.43725585938",0,0,0,0,0,0,0,0,0 +"1287.50146484375",0,0,0,0,5.51331050341993,0,0,0,0 +"1287.78002929688",0,0,0,3.05204384050417,0,0,0,0,0 +"1287.95141601562",0,0,0,0,4.51172225344337,0,0,0,0 +"1288.33703613281",0,0,0,0,0,0,0,0,0 +"1288.4228515625",0,0,0,0,0,0,0,0,0 +"1288.95861816406",0,0,0,0,0,0,0,0,0 +"1289.28015136719",0,0,0,0,0,0,0,0,0 +"1289.49450683594",0,0,0,0,0,0,0,0,0 +"1289.79467773438",1.96667892956805,0,0,2.74733393706692,0,0,0,0,3.35105919597068 +"1290.24499511719",2.7829966590241,0,0,0,0,0,0,0,0 +"1290.56665039062",0,0,6.23807798857686,0,0,0,0,0,0 +"1290.99572753906",1.6429181720963,0,0,0,0,0,0,0,0 +"1291.23168945312",0,0,0,0,0,0,0,0,0 +"1291.48913574219",0,0,0,0,0,0,0,0,0 +"1291.59643554688",0,0,0,0,0,0,0,0,0 +"1291.83239746094",0,0,0,0,0,0,0,0,0 +"1292.24011230469",0,0,0,0,0,0,0,0,3.57712037139516 +"1292.56213378906",0,0,0,0,0,0,0,0,0 +"1292.81970214844",2.58817189068446,0,0,0,0,3.08927643330314,0,0,0 +"1293.12023925781",0,2.05783993518582,0,3.63554102592062,0,0,0,0,0 +"1293.3349609375",2.34058262560444,2.37999115486246,0,0,0,0,0,0,5.35760340017347 +"1293.67846679688",0,0,0,0,0,0,0,0,3.33723223413768 +"1293.89318847656",0,0,0,0,0,0,0,0,0 +"1294.04357910156",0,0,0,0,0,0,0,0,0 +"1294.15100097656",0,0,0,0,0,0,0,0,0 +"1294.43017578125",0,0,0,0,0,0,0,0,3.14066240050528 +"1294.70947265625",0,0,0,0,0,2.90407460870667,0,0,5.41195283691974 +"1295.18212890625",0,0,0,0,0,0,0,0,0 +"1295.41845703125",0,0,0,0,0,0,0,0,0 +"1295.76232910156",0,2.6762090896361,3.00636334973989,0,0,0,0,0,0 +"1296.02014160156",0,0,0,0,0,0,0,0,0 +"1296.12768554688",0,0,0,0,0,0,0,0,0 +"1296.32104492188",0,2.11781072558683,0,3.72190955169347,0,0,0,0,0 +"1296.7294921875",2.78952661690079,0,0,0,0,0,0,0,0 +"1297.15954589844",0,0,0,3.05095491960259,0,0,0,0,3.62582009041944 +"1297.39611816406",2.19977401700547,0,0,2.65956401847156,0,0,0,0,0 +"1297.93371582031",0,0,0,0,0,0,0,0,3.89113953040187 +"1298.23486328125",0,0,0,0,0,0,0,0,0 +"1298.47155761719",0,2.23765759505653,0,0,0,0,0,0,0 +"1298.85876464844",2.38686547189497,0,0,0,0,0,0,0,2.7388593048011 +"1299.09545898438",0,0,0,0,0,0,0,0,3.16909435019825 +"1299.39672851562",0,0,0,0,3.6622895528845,0,0,0,0 +"1299.50439453125",2.01160570627671,2.09584686821098,0,0,0,3.38129185711144,0,0,0 +"1299.87023925781",1.81071070685219,2.46013981398063,0,0,0,0,0,0,0 +"1300.15014648438",2.31313293879004,0,0,0,0,2.85228369808725,0,0,0 +"1300.55920410156",0,0,0,0,4.7450195641397,0,0,0,0 +"1300.68835449219",0,0,0,0,0,0,0,0,0 +"1300.77453613281",2.53692689964728,0,0,3.54777110732526,3.83737367518605,0,0,0,0 +"1301.37744140625",2.25536402374186,0,0,0,0,0,0,0,2.81590395007597 +"1301.85131835938",0,0,0,0,0,0,0,0,0 +"1302.10986328125",0,0,0,0,3.33452707760791,0,0,0,0 +"1302.26062011719",1.66262851159488,0,0,0,0,0,0,0,0 +"1302.60534667969",0,0,0,0,0,4.96035826186617,0,0,0 +"1302.86401367188",0,0,0,0,0,2.72146265105291,0,0,3.44329885017673 +"1303.10107421875",0,3.9371100304901,0,0,0,0,0,0,0 +"1303.44592285156",1.80166359738134,0,0,2.84337110912406,0,0,0,0,0 +"1303.81237792969",0,0,0,0,0,0,0,0,0 +"1304.07104492188",1.67126420170077,3.24898992342659,0,2.80134601763103,0,3.83904350503535,0,0,0 +"1304.50231933594",0,2.51023573083709,0,0,0,0,0,0,0 +"1304.99829101562",0,0,0,0,0,0,0,0,0 +"1305.12768554688",1.71453893910635,0,0,3.22618228487238,0,0,0,0,0 +"1305.38647460938",0,0,0,0,0,0,0,0,0 +"1305.49438476562",0,0,0,2.32967600238577,0,0,0,0,0 +"1306.03369140625",2.52353477447722,0,0,0,0,0,0,6.32112208453501,0 +"1306.22790527344",2.16647187652003,2.52180188170801,0,0,3.83380733180352,0,0,0,3.01304699147912 +"1306.87536621094",2.02226893630444,0,3.9349242088562,0,4.47665816410132,0,0,0,0 +"1307.60925292969",1.71230568950202,0,0,0,0,0,0,0,0 +"1307.88989257812",0,2.14145052457991,0,0,0,0,0,0,0 +"1308.10583496094",0,0,0,2.50490336765556,0,0,0,0,3.45653579093852 +"1308.42980957031",0,1.9495438808779,0,0,0,0,0,0,0 +"1308.75366210938",0,0,0,2.43401236807582,5.29126309972684,0,0,0,0 +"1309.12084960938",0,0,0,0,0,0,0,0,0 +"1309.38012695312",0,0,0,2.74733393706692,0,0,0,0,0 +"1309.6826171875",0,0,0,0,0,0,0,0,3.44328203687627 +"1309.94189453125",1.77917605531359,0,0,0,0,0,0,0,0 +"1310.15795898438",0,0,0,2.69700965194097,0,0,0,0,0 +"1310.63342285156",0,0,0,0,3.72634997333951,0,0,0,0 +"1311.08740234375",0,0,0,0,0,0,0,0,0 +"1311.58459472656",0,2.18756167820007,0,3.7387884707091,0,0,0,0,0 +"1311.82250976562",0,0,0,0,4.1306106629178,0,0,0,0 +"1311.90893554688",0,0,0,0,0,0,0,0,0 +"1312.21166992188",0,0,0,0,0,0,0,0,0 +"1312.29821777344",0,0,0,0,0,2.84531801726587,0,0,3.41429369271302 +"1312.57946777344",2.37843549147156,2.42610230848262,0,0,0,0,0,0,0 +"1312.86059570312",0,0,0,0,3.20035427670865,0,0,0,0 +"1313.12023925781",1.64271246241382,0,0,0,0,0,9.14759588938975,0,0 +"1313.46643066406",0,0,0,0,0,0,0,0,0 +"1313.85583496094",0,0,0,0,0,0,0,0,0 +"1314.09399414062",0,0,0,0,0,0,0,0,0 +"1314.4619140625",0,0,0,0,0,0,0,0,0 +"1314.67834472656",0,0,0,0,0,0,0,0,0 +"1315.08972167969",0,0,0,0,0,0,0,0,0 +"1315.21960449219",0,0,0,2.53004954013296,0,0,0,0,0 +"1315.45776367188",1.89551788934981,0,0,2.40165592286708,0,0,0,0,0 +"1315.80419921875",0,0,0,0,0,0,0,0,3.66750579417467 +"1316.19409179688",0,0,3.21252841626443,2.4257131744429,0,0,0,0,0 +"1316.62731933594",0,0,0,0,0,0,0,0,0 +"1316.86560058594",1.89076145428564,0,0,0,0,0,0,0,0 +"1317.03894042969",0,0,0,0,0,0,0,0,5.86754897489992 +"1317.38562011719",2.99583745399808,0,0,0,0,0,0,0,0 +"1317.79736328125",0,0,0,0,5.08697791838333,0,0,0,0 +"1317.97082519531",1.93337075521693,0,0,0,5.36668411043413,0,0,0,0 +"1318.23095703125",0,0,0,0,5.20869712719606,0,0,0,0 +"1318.44763183594",0,0,0,0,0,2.77486945065883,0,0,0 +"1318.70788574219",0,0,0,0,0,0,0,0,2.82858449636749 +"1318.79455566406",0,0,0,0,0,0,0,0,0 +"1318.9462890625",0,0,0,0,0,0,0,0,0 +"1319.16320800781",0,0,0,0,0,0,0,0,0 +"1319.33666992188",0,0,0,0,0,0,0,0,0 +"1319.66198730469",0,3.06811126192598,0,0,0,0,0,0,0 +"1319.9873046875",0,2.91422688695827,0,0,5.39091041308126,0,0,0,0 +"1320.35607910156",0,0,0,0,0,0,0,0,0 +"1320.52966308594",0,0,0,0,0,0,0,0,5.21860528181205 +"1320.74658203125",0,3.92503638236795,0,2.32967600238577,0,0,0,0,0 +"1321.00695800781",0,0,0,0,0,0,0,0,3.34217413597462 +"1321.33251953125",0,0,0,0,0,0,0,0,0 +"1321.61462402344",0,0,0,0,0,0,0,0,0 +"1321.91845703125",0,0,0,0,0,0,0,0,0 +"1322.04870605469",2.1052542885627,3.53311887436892,0,2.53004954013296,0,0,0,0,0 +"1322.50463867188",0,0,0,0,0,0,0,0,0 +"1322.67834472656",0,2.37999115486246,0,0,0,0,0,0,0 +"1322.74340820312",0,0,0,2.50490336765556,0,0,0,0,4.98229099929334 +"1323.15600585938",0,0,0,0,0,0,0,0,0 +"1323.39489746094",0,0,0,2.33076492328735,3.23540256781085,0,0,0,3.16909435019825 +"1323.85107421875",0,0,0,0,0,0,0,0,0 +"1324.28552246094",1.66262851159488,0,0,0,0,0,0,0,0 +"1324.54626464844",0,0,0,3.12184591918233,9.12969818026746,0,0,0,0 +"1325.28515625",1.79256818048364,2.76034251199056,0,0,0,0,0,0,4.66584440108935 +"1325.54602050781",0,0,0,2.74733393706692,0,3.09008437779639,0,0,3.3004884322194 +"1326.3720703125",0,0,0,0,0,0,0,0,0 +"1326.52429199219",3.08473563508559,0,0,0,0,0,0,0,0 +"1326.91577148438",0,0,0,0,0,0,0,0,0 +"1327.02453613281",0,0,0,0,0,0,0,0,3.36429613673248 +"1327.1767578125",0,0,0,0,0,0,0,0,0 +"1327.30725097656",0,0,0,3.34739756957807,0,0,0,0,0 +"1327.61181640625",0,0,0,0,5.34751347507226,0,0,0,0 +"1327.98156738281",0,0,0,0,0,0,0,0,0 +"1328.28625488281",0,0,0,0,0,0,0,0,0 +"1328.46032714844",0,0,0,0,0,0,0,0,0 +"1328.5908203125",0,0,0,0,0,0,0,0,0 +"1328.91735839844",0,0,0,0,0,0,0,0,3.23290205471133 +"1329.0478515625",0,0,0,0,0,0,0,0,0 +"1329.13500976562",0,0,0,0,0,0,0,0,0 +"1329.37438964844",0,0,0,2.94770747481412,0,5.09196355480798,0,0,5.77402829703808 +"1329.67919921875",0,0,0,0,0,0,0,0,0 +"1329.74450683594",0,0,4.87636347709456,0,0,0,0,0,0 +"1330.00573730469",0,0,0,0,0,0,0,0,0 +"1330.0927734375",0,0,0,2.43401236807582,3.44608938125166,0,0,0,0 +"1330.44128417969",0,0,0,0,0,0,0,0,0 +"1330.70251464844",0,0,0,2.92256130233671,0,0,0,0,11.7531421842843 +"1331.13818359375",0,0,0,0,0,0,0,0,0 +"1331.39953613281",0,0,0,0,0,0,0,0,0 +"1331.63916015625",0,2.34595364936445,0,0,0,0,0,0,0 +"1332.20568847656",0,0,0,0,0,0,0,0,3.75537675431452 +"1332.51086425781",0,0,0,0,0,0,0,0,0 +"1332.75061035156",3.11804380943671,2.04576628706367,0,0,0,0,0,0,0 +"1333.16467285156",0,0,0,0,0,0,0,0,4.95765453589583 +"1333.68798828125",0,2.65204645768264,0,0,0,0,0,0,0 +"1333.90600585938",1.71387350263206,3.03239781481074,3.27011145394265,3.4182885691578,3.60461496628694,0,0,0,0 +"1334.60375976562",0,0,0,0,0,2.92273226469429,0,0,3.51145843545554 +"1335.0400390625",0,0,0,2.72215582441838,0,0,0,0,0 +"1335.1708984375",1.70347032357934,0,0,0,0,0,0,0,0 +"1335.25817871094",0,0,0,0,0,0,0,0,0 +"1335.41088867188",0,0,0,2.4257131744429,0,3.76697904944181,0,0,0 +"1335.8037109375",0,0,0,0,0,0,0,0,0 +"1336.00012207031",0,0,0,3.4434347416352,5.45032728655933,0,0,0,0 +"1336.26196289062",0,0,0,0,0,0,0,0,0 +"1336.69848632812",0,0,0,0,0,0,0,0,0 +"1336.76391601562",1.64767460716047,0,0,0,0,0,0,0,0 +"1336.96044921875",2.65979869156019,0,0,3.05095491960259,6.33718673475949,0,0,0,0 +"1337.1787109375",1.63407677230793,0,0,0,4.62328455708712,0,0,0,0 +"1337.94299316406",0,0,0,0,0,0,0,0,3.1955850450223 +"1338.18322753906",0,0,0,2.33076492328735,4.7053119278207,0,0,0,3.1955850450223 +"1338.57629394531",2.29275716281717,0,0,0,0,0,0,0,3.39272808642545 +"1338.8603515625",0,0,0,0,0,0,0,0,0 +"1339.14428710938",0,0,0,0,0,0,0,0,0 +"1339.38464355469",0,0,0,0,3.39448255288318,0,0,0,0 +"1339.64685058594",0,2.15352417270206,0,0,0,0,0,0,0 +"1340.14953613281",0,0,0,2.65126482483864,0,3.56390381476519,0,0,0 +"1340.65222167969",2.45170829778469,0,0,0,0,0,0,0,0 +"1341.17687988281",0,0,3.09801829861317,0,0,0,0,0,0 +"1341.65795898438",0,0,0,0,0,0,0,0,2.92138054504382 +"1341.89855957031",0,0,0,0,0,0,0,0,0 +"1342.29223632812",0,3.54520785820022,0,0,0,0,0,0,0 +"1342.53283691406",0,0,0,0,0,0,0,0,3.48059904656529 +"1342.92663574219",0,0,0,0,0,0,0,0,0 +"1343.21105957031",2.04061717235547,0,0,0,0,0,0,0,0 +"1343.64868164062",0,0,0,0,8.03693774533217,0,0,0,0 +"1344.13024902344",0,1.9875661496122,0,0,0,0,0,0,0 +"1344.54614257812",0,0,0,0,0,0,0,0,0 +"1344.63366699219",2.47506698600921,0,0,0,0,3.51049701515928,0,0,4.81486093123896 +"1345.07153320312",0,0,0,0,0,0,0,0,3.4059818404877 +"1345.64099121094",0,0,0,0,0,0,0,0,0 +"1345.79431152344",0,0,0,0,0,0,0,0,0 +"1345.85998535156",0,0,0,0,0,2.78102718698696,0,0,0 +"1346.07897949219",2.31177083534248,0,0,0,0,0,0,0,2.7520962455629 +"1346.51708984375",0,0,0,3.12184591918233,0,0,0,0,0 +"1346.75805664062",2.06806685916987,0,0,2.4005670019655,0,0,0,0,0 +"1347.17443847656",0,3.04447146293289,0,0,0,0,9.79948562413779,0,0 +"1347.70043945312",0,0,0,5.54973693542839,0,0,0,0,0 +"1348.02917480469",0,0,0,2.33076492328735,6.67740280212261,0,0,0,2.87025338682225 +"1348.53344726562",0,0,0,0,0,4.04647085500485,0,0,0 +"1348.94995117188",0,0,0,0,0,0,0,0,3.37697668302399 +"1349.0595703125",0,0,0,0,0,0,0,0,0 +"1349.21313476562",0,0,0,0,0,0,0,0,0 +"1349.32275390625",0,2.47619822533908,0,0,0,0,0,0,5.04989419010187 +"1349.69567871094",0,0,0,0,0,0,0,0,3.02630074554138 +"1349.98083496094",0,0,0,0,0,5.02070704370769,0,0,2.71477923587387 +"1350.50732421875",1.86418894749369,0,0,0,0,0,0,0,2.70154229511207 +"1350.92419433594",0,0,0,2.62611865236124,0,0,0,0,0 +"1351.14367675781",0,0,0,2.62611865236124,0,0,0,0,2.58281194608198 +"1351.71423339844",0,1.99963979773436,0,0,0,0,0,0,3.62582009041944 +"1352.08740234375",0,0,0,0,0,0,0,0,0 +"1352.50463867188",0,0,0,2.45089128709145,0,0,0,0,0 +"1352.89990234375",0,0,0,0,0,0,0,0,0 +"1353.33911132812",2.6643433830762,0,0,0,0,0,0,0,4.05492553357557 +"1353.62463378906",0,0,0,0,0,0,0,0,0 +"1353.91015625",2.02247464598692,0,0,0,0,0,0,0,0 +"1354.32763671875",0,2.63008260030678,0,2.37650975038968,0,20.4935863022374,0,0,0 +"1354.7890625",1.6429181720963,0,0,0,0,0,0,0,0 +"1355.052734375",0,0,0,0,0,14.6518319771115,0,0,0 +"1355.82202148438",0,3.49908136887091,0,0,0,23.4214786267179,0,0,0 +"1356.173828125",0,0,0,2.4005670019655,11.8165103524318,0,0,0,0 +"1356.56958007812",2.42493008131026,0,0,0,3.2722089440334,0,0,0,0 +"1356.8115234375",0,0,0,2.33076492328735,0,9.08505130879269,0,0,0 +"1356.92150878906",0,2.57189779856447,0,0,0,0,0,0,0 +"1357.27331542969",1.70503210284369,0,0,2.92256130233671,5.48949632108112,6.16151109960516,0,0,0 +"1357.71325683594",2.52353477447722,0,0,0,0,0,0,0,0 +"1358.1533203125",0,3.36831395993591,0,0,0,0,0,0,0 +"1358.21936035156",0,2.52180188170801,0,2.82649219010843,0,0,0,0,0 +"1358.43933105469",0,3.7832256555224,0,2.4257131744429,5.87060791160669,3.86305095285785,0,0,0 +"1358.79150390625",0,3.9371100304901,0,2.74733393706692,0,0,0,0,0 +"1359.40771484375",1.87282463759958,0,0,2.60094053971269,0,0,0,0,0 +"1359.78198242188",2.04082288203795,0,0,0,0,0,0,0,0 +"1359.98010253906",0,0,0,2.50490336765556,3.38202896079664,2.85228369808725,0,0,3.71748653685475 +"1360.13427734375",3.45776215109953,0,0,0,0,0,0,0,0 +"1360.50854492188",1.72317462921223,0,0,2.53004954013296,0,0,0,0,0 +"1360.90502929688",0,2.36790217103115,0,2.53004954013296,0,0,0,0,0 +"1361.16931152344",0,0,0,0,0,0,0,0,3.0154744306764 +"1361.32348632812",0,1.9875661496122,0,0,0,0,0,0,0 +"1361.71997070312",0,2.03367730323236,0,0,0,0,0,0,4.30376894097102 +"1362.09460449219",2.04945857214383,0,4.47894340262861,0,0,0,0,0,0 +"1362.40307617188",0,0,0,2.33076492328735,0,0,0,0,0 +"1362.68957519531",0,0,0,0,0,0,0,0,5.86697576712917 +"1362.99816894531",1.62932033724376,2.23765759505653,0,0,0,0,0,0,0 +"1363.21850585938",0,0,0,0,5.09713482355231,0,0,0,0 +"1363.39489746094",0,0,0,0,0,3.87911874190275,0,0,0 +"1363.70349121094",0,0,0,0,0,0,0,0,0 +"1363.81384277344",1.98937218131829,0,0,0,3.54109314762913,3.0188278666961,0,0,0 +"1364.12243652344",0,0,4.21519529842585,0,0,0,0,0,0 +"1364.51940917969",0,0,0,0,0,0,0,0,0 +"1364.78405761719",0,0,0,0,0,0,0,0,0 +"1364.85021972656",0,0,0,0,0,0,0,0,0 +"1365.02673339844",0,0,0,0,0,3.99306405539894,0,0,0 +"1365.35754394531",0,3.04499429589327,0,0,0,0,0,0,0 +"1365.57824707031",0,3.09456737978935,0,0,0,0,0,0,0 +"1366.01953125",0,0,0,0,0,0,0,0,0 +"1366.24011230469",3.35501815191584,0,0,0,4.82878922175378,0,0,0,0 +"1366.54907226562",0,0,0,0,0,0,0,0,0 +"1366.79187011719",0,2.53387552983017,0,0,0,0,0,0,3.61258314965765 +"1367.123046875",0,0,0,0,0,0,0,0,0 +"1367.2333984375",0,0,0,0,0,0,0,0,0 +"1367.63073730469",0,0,0,0,0,0,0,0,0 +"1367.89575195312",0,0,2.64017707361604,0,7.18197588834141,0,0,0,0 +"1368.33740234375",0,0,0,0,0,0,0,0,0 +"1368.64660644531",0,0,0,0,0,0,0,0,0 +"1368.82336425781",0,2.61800895218463,0,2.33076492328735,0,0,0,0,0 +"1369.26513671875",0,0,0,0,0,0,0,0,0 +"1369.48608398438",0,2.5563622201664,0,0,0,0,14.8871435732239,0,5.77897019887502 +"1369.61865234375",0,0,4.00819939854883,0,0,0,0,0,0 +"1369.92797851562",0,0,0,0,0,0,0,0,0 +"1370.14892578125",0,0,0,2.50490336765556,0,0,0,0,0 +"1370.48046875",1.96557084322982,0,4.9175740350926,2.85167030275698,0,0,0,0,0 +"1370.83410644531",0,0,0,2.67644293748719,0,0,0,0,3.63850063671096 +"1371.27624511719",0,2.05731710222545,0,0,0,0,0,0,0 +"1371.71838378906",0,0,0,0,0,0,0,0,0 +"1372.05017089844",0,0,0,0,0,0,0,0,0 +"1372.18286132812",0,0,0,0,3.59162277240319,0,0,0,0 +"1372.4482421875",0,0,0,0,0,0,0,0,0 +"1372.66943359375",0,0,0,0,0,4.32080260078176,0,0,2.82914089083777 +"1372.91271972656",0,0,0,0,0,0,0,0,0 +"1373.20031738281",0,0,0,0,0,0,0,0,0 +"1373.4658203125",2.25060758867768,0,0,0,4.82878922175378,0,0,0,0 +"1373.75354003906",0,0,0,0,0,0,0,0,0 +"1373.86413574219",0,0,0,0,0,0,0,0,0 +"1374.15185546875",0,0,0,0,0,0,0,0,4.22672429569615 +"1374.46166992188",0,0,0,0,0,0,0,0,0 +"1374.68298339844",0,2.47619822533908,4.13558792532214,2.81822493664666,3.62722546354245,0,0,0,0 +"1375.08154296875",0,0,0,0,0,0,0,0,0 +"1375.21435546875",1.89572359903229,0,0,0,0,0,0,0,3.63850063671096 +"1375.52429199219",0,0,0,0,0,0,0,0,0 +"1375.70141601562",0,0,0,0,0,0,0,0,0 +"1376.12219238281",0,0,0,0,0,0,0,0,0 +"1376.27722167969",1.72772535459393,4.37566152506967,0,0,0,0,0,0,0 +"1376.85314941406",1.65221929867647,0,0,0,0,0,0,0,0 +"1377.185546875",0,0,2.7601641713653,0,0,0,0,0,0 +"1377.42919921875",0,4.04540608479803,0,0,0,4.46688349236775,0,0,3.1955850450223 +"1377.67297363281",0,0,0,0,0,0,0,0,3.1955850450223 +"1377.96105957031",0,0,0,0,0,0,0,0,0 +"1378.07189941406",0,0,3.26928062059016,2.40165592286708,0,0,0,0,0 +"1378.337890625",0,0,0,0,0,0,0,0,4.62852739140032 +"1378.69250488281",0,0,0,0,0,0,0,0,0 +"1378.84777832031",0,0,0,0,0,0,0,0,0 +"1378.98071289062",0,0,0,0,0,0,0,0,0 +"1379.09155273438",0,0,0,0,0,0,0,0,0 +"1379.224609375",0,0,0,0,0,0,0,0,0 +"1379.69030761719",0,2.22558394693437,0,2.53004954013296,0,0,0,0,2.65985659135685 +"1379.97863769531",0,0,0,0,3.24785615989738,0,0,0,0 +"1380.42224121094",0,0,0,2.55522765278151,0,0,0,0,0 +"1380.84362792969",0,0,0,0,0,0,0,0,0 +"1380.95458984375",0,2.43819129231393,4.61261537289181,0,0,3.31003534601115,0,0,0 +"1381.19873046875",2.73848733554609,0,0,0,11.5933857451443,0,0,0,3.15826803533327 +"1381.77563476562",0,0,0,0,4.1306106629178,0,0,0,0 +"1382.01977539062",2.80923695639937,0,0,0,0,0,0,0,0 +"1382.10852050781",0,0,0,0,0,0,0,0,0 +"1382.33044433594",0,0,0,0,0,0,0,0,0 +"1382.79663085938",0,1.99963979773436,0,3.37254374205547,0,0,0,0,0 +"1383.24072265625",0,0,0,0,0,0,0,0,0 +"1383.48498535156",0,0,0,2.33076492328735,0,2.77486945065883,0,0,0 +"1384.04028320312",1.6429181720963,0,0,0,0,4.06432056649922,0,0,0 +"1384.28454589844",0,2.15352417270206,0,0,0,0,0,0,0 +"1384.41784667969",0,2.14197335754029,0,0,0,3.69037274650664,0,0,0 +"1384.75109863281",0,0,0,0,0,0,0,0,0 +"1384.81774902344",0,0,0,0,0,0,0,0,0 +"1385.37316894531",1.65175957188467,0,0,0,0,2.92354020918754,0,0,0 +"1385.662109375",0,0,0,2.53004954013296,5.72277783353759,2.72146265105291,0,0,0 +"1386.06213378906",0,0,0,0,3.55193093432405,0,0,0,0 +"1386.23999023438",0,0,0,0,0,0,0,0,9.73025655560881 +"1386.64013671875",0,0,0,0,0,0,0,0,0 +"1387.15148925781",0,0,0,0,4.65781004463197,4.13560077618529,0,0,0 +"1387.59631347656",0,2.17547269436877,0,0,0,0,0,0,3.99224743130351 +"1387.99658203125",2.79428305196496,0,0,0,6.48501681282858,0,0,0,0 +"1388.3525390625",0,0,0,2.94770747481412,3.34696487145459,2.92354020918754,0,0,0 +"1388.68627929688",0,3.66284061738317,0,2.94770747481412,0,0,0,0,0 +"1388.90869140625",1.89551788934981,2.56791303532817,4.36724702786971,0,0,2.92273226469429,0,0,5.9735987776385 +"1389.19799804688",0,0,0,0,0,0,0,0,2.90814360428202 +"1389.70983886719",0,0,0,3.32221945692952,4.25407215861103,0,0,0,0 +"1389.99914550781",1.76876684239518,0,2.9522743826198,0,0,0,0,0,0 +"1390.22180175781",0,0,0,0,0,0,0,0,6.15993231747713 +"1390.4443359375",0,0,3.13292104316072,0,0,0,0,0,0 +"1390.71154785156",0,0,0,0,0,0,0,0,3.09446033082019 +"1391.17919921875",0,4.21365759379781,0,0,0,0,9.60133950598846,0,0 +"1391.53552246094",0,0,0,0,0,0,0,0,2.58281194608198 +"1391.9140625",0,0,0,0,0,0,0,0,0 +"1392.09228515625",0,0,0,0,0,3.87298470416039,0,0,0 +"1392.515625",0,0,0,0,0,0,0,0,0 +"1392.64929199219",0,0,0,0,0,0,0,0,0 +"1392.80517578125",3.02398380778576,0,0,0,0,0,0,0,2.853220959765 +"1393.09484863281",0,0,0,0,0,0,0,0,0 +"1393.20629882812",0,0,2.85348078694355,0,0,0,0,0,0 +"1393.69665527344",0,2.52180188170801,0,0,0,0,0,0,0 +"1393.87487792969",2.28003650798709,0,0,2.33076492328735,5.47758133079178,0,0,0,0 +"1394.16467285156",2.05012400861812,0,0,0,4.78841650214869,0,0,0,3.61256633635719 +"1394.61059570312",2.53217046458311,0,0,0,0,2.92354020918754,0,0,0 +"1394.87817382812",2.29342259929146,0,2.85264995359107,0,0,0,0,0,3.78129424136783 +"1395.21264648438",0,0,0,0,0,0,0,0,0 +"1395.39099121094",0,0,0,0,0,0,0,0,0 +"1396.01550292969",0,0,0,0,0,0,0,0,0 +"1396.30554199219",0,2.18756167820007,0,0,0,0,0,0,0 +"1396.66247558594",0,3.34519699390321,0,0,0,0,0,0,2.98898373585235 +"1396.84106445312",1.81071070685219,0,0,3.37254374205547,0,0,0,0,0 +"1397.08654785156",0,2.52232471466839,0,2.97285364729152,3.62842914862575,0,0,0,0 +"1397.33203125",0,0,0,0,0,0,0,0,0 +"1397.55517578125",2.42947477282626,2.52180188170801,0,0,0,0,0,0,0 +"1397.68908691406",0,0,0,0,0,0,0,0,0 +"1397.80065917969",0,0,0,3.21788309123946,4.6067418180607,0,0,0,0 +"1397.95690917969",0,0,0,0,0,0,0,0,0 +"1398.13549804688",2.33582619054027,2.94878722541665,0,0,0,0,0,0,0 +"1398.35876464844",2.92169350152819,0,0,2.60094053971269,4.15442484525661,0,0,0,0 +"1398.89465332031",2.82329451804371,0,0,0,0,0,0,0,0 +"1399.20727539062",1.71230568950202,0,2.7069060375977,2.82649219010843,0,0,0,0,2.58281194608198 +"1399.72094726562",0,0,0,0,0,0,0,0,0 +"1399.89965820312",0,0,0,0,0,0,0,0,0 +"1399.96667480469",0,0,0,0,5.4261009839122,0,0,0,0 +"1400.21240234375",0,0,0,0,0,0,0,0,0 +"1400.43579101562",0,0,0,2.92256130233671,7.549445999937,3.80786223080247,0,0,0 +"1401.0615234375",1.79731858168213,0,3.32420042106273,0,3.17310023247619,0,0,0,0 +"1401.46374511719",0,0,0,0,0,0,0,0,0 +"1401.66491699219",2.3734793805906,0,0,0,0,0,0,0,0 +"1402.00024414062",0,0,0,0,0,0,0,0,0 +"1402.24609375",1.83042104635077,0,4.08149895820205,2.82649219010843,0,0,0,0,2.87082659459299 +"1402.69323730469",0,0,0,0,4.79252144732843,0,0,0,0 +"1402.96166992188",0,2.47222879781193,0,0,3.45389942636125,0,0,0,2.86588469275605 +"1403.52075195312",0,0,0,0,0,0,0,0,2.7520962455629 +"1403.67736816406",0,0,0,2.60094053971269,4.44820043478557,0,0,0,2.67253713764836 +"1403.94580078125",2.27072934754123,0,0,0,0,0,0,0,0 +"1404.16943359375",0,0,0,0,0,0,0,0,0 +"1404.97497558594",0,3.13670910588237,0,2.94770747481412,0,0,0,0,0 +"1405.60168457031",0,0,0,0,0,0,0,0,0 +"1405.71350097656",2.00276430648834,0,3.25090086140951,0,0,0,0,0,0 +"1405.87023925781",0,0,0,0,3.79874324246147,0,0,4.68174665233214,3.9240878460247 +"1406.27319335938",0,0,0,0,0,0,0,0,0 +"1406.34033203125",1.74607359064495,0,0,0,3.83380733180352,0,0,0,0 +"1406.74340820312",0,0,0,0,0,0,0,0,0 +"1407.01208496094",0,0,0,0,0,0,0,0,4.16097533631415 +"1407.30334472656",0,0,0,0,0,3.99306405539894,0,0,0 +"1407.54968261719",0,0,0,0,0,0,0,0,0 +"1407.68408203125",0,0,0,2.4005670019655,0,0,0,0,0 +"1407.77368164062",0,2.16392187920699,0,0,0,0,0,0,0 +"1408.02014160156",0,0,0,2.33076492328735,0,0,0,0,0 +"1408.35620117188",0,0,0,0,0,0,0,0,0 +"1408.49060058594",0,0,0,0,0,0,0,0,4.52797588496896 +"1408.73706054688",0,0,0,0,0,0,0,0,0 +"1408.96118164062",0,1.9754771657809,0,0,0,0,0,0,0 +"1409.45422363281",0,0,0,0,5.82310602841795,3.96905660757643,0,0,0 +"1409.81286621094",1.88166603738795,3.26106357154874,0,0,0,0,0,0,5.11312868684421 +"1410.19396972656",0,0,0,2.33076492328735,0,0,0,0,0 +"1410.552734375",1.62754681443124,0,4.40564384297538,0,0,0,0,0,0 +"1410.93395996094",2.4856819086101,0,3.00636334973989,0,0,0,0,0,0 +"1411.27038574219",1.78393249037776,0,3.56873793273235,3.05204384050417,0,0,0,0,0 +"1411.65161132812",0,0,0,0,0,0,0,0,0 +"1411.80871582031",0,0,0,0,0,0,0,0,0 +"1411.8759765625",0,0,0,0,0,0,0,0,5.31972999601416 +"1412.50415039062",0,0,2.76099500471779,0,0,0,0,0,0 +"1412.7958984375",0,0,0,0,3.65159404591832,0,0,0,0 +"1413.02026367188",0,2.52180188170801,0,0,0,0,0,0,0 +"1413.49157714844",0,0,0,3.22618228487238,0,0,0,0,0 +"1413.76098632812",1.65065148554644,0,0,0,4.84002333051717,0,0,0,2.81590395007597 +"1414.2099609375",0,0,5.82144732157777,0,3.51795984681626,0,0,0,0 +"1414.54675292969",0,0,0,0,0,0,0,0,0 +"1414.74890136719",1.62477564572776,2.22610677989475,0,0,0,0,0,0,0 +"1414.99597167969",0,0,0,3.14699209165973,3.35941846354113,0,0,0,0 +"1415.62487792969",1.68354824053259,0,0,2.74733393706692,0,0,0,0,0 +"1416.2314453125",1.64767460716047,0,0,2.62611865236124,0,0,0,0,0 +"1416.5234375",0,0,0,0,0,0,0,0,0 +"1416.77062988281",0,0,0,0,6.4998172649745,2.8274683057715,0,0,0 +"1417.10778808594",0,0,0,0,0,0,0,0,0 +"1417.53479003906",0,0,0,0,0,0,0,0,2.7520962455629 +"1417.80456542969",0,2.18756167820007,0,0,4.10335661868534,0,0,0,3.36429613673248 +"1418.29919433594",0,0,0,0,0,0,0,0,0 +"1418.41162109375",1.69871388851517,2.57189779856447,0,2.92256130233671,0,0,0,0,0 +"1418.74890136719",0,0,0,0,0,0,0,0,0 +"1419.28869628906",0,0,0,0,0,0,0,0,0 +"1419.67102050781",0,0,0,0,0,0,0,0,0 +"1419.73852539062",0,0,0,0,0,0,0,0,0 +"1420.09851074219",0,0,0,0,0,0,0,0,0 +"1420.166015625",0,0,0,0,0,0,0,0,0 +"1420.34594726562",0,0,3.38459720163331,0,0,0,0,0,0 +"1420.68347167969",0,0,0,0,0,0,0,0,0 +"1420.77355957031",0,0,0,0,0,0,0,0,0 +"1421.08862304688",0,1.9754771657809,0,3.34739756957807,0,0,0,0,0 +"1421.29113769531",1.88621676276964,0,0,0,0,0,0,0,3.82296313182259 +"1421.76391601562",0,0,0,0,0,0,0,0,0 +"1421.85388183594",1.82137393687992,0,0,0,0,0,0,0,0 +"1422.25915527344",0,0,0,0,0,3.01186218587472,0,0,0 +"1422.43933105469",0,0,0,0,0,0,0,4.8370727375341,3.64988334604621 +"1422.93469238281",0,0,0,0,0,0,0,0,0 +"1423.15991210938",0,0,0,0,0,0,0,0,0 +"1423.5654296875",0,0,0,0,0,0,0,0,0 +"1423.63293457031",1.76966921905093,2.56843586828855,5.84065791411091,0,0,0,0,0,0 +"1424.06103515625",0,0,0,3.63554102592062,0,0,0,0,0 +"1424.37646484375",0,0,0,0,0,0,0,0,0 +"1424.71447753906",0,0,0,0,3.6005100211072,0,0,0,0 +"1425.07507324219",0,0,0,0,0,0,0,0,0 +"1425.14270019531",0,0,0,0,0,0,0,0,0 +"1425.59350585938",0,0,0,0,0,0,0,0,0 +"1425.6611328125",0,0,0,0,0,0,0,0,0 +"1425.72875976562",1.90027432441398,0,0,0,0,0,0,0,0 +"1425.81884765625",0,0,0,0,0,0,0,0,0 +"1426.33740234375",0,0,0,2.94770747481412,4.19056613819308,0,0,0,3.86213437293815 +"1426.63061523438",0,0,0,0,0,0,0,0,0 +"1426.90124511719",0,0,0,0,3.24785615989738,0,0,0,0 +"1427.21691894531",0,0,0,0,0,0,0,0,4.35432289142184 +"1427.44250488281",0,0,0,2.84337110912406,0,0,0,0,0 +"1427.53271484375",0,2.22558394693437,0,0,0,0,0,0,3.66313710010847 +"1427.98388671875",0,0,0,0,0,0,0,0,0 +"1428.0966796875",0,0,0,0,0,0,0,0,0 +"1428.16442871094",0,0,0,0,0,0,0,0,0 +"1428.23205566406",0,0,0,0,3.95726882749675,3.14268323290905,0,0,0 +"1428.48034667969",0,0,0,0,0,0,0,0,2.64661965059505 +"1428.77368164062",0,2.03367730323236,0,0,0,0,0,0,0 +"1429.06701660156",0,0,0,0,0,0,0,0,0 +"1429.58618164062",0,0,0,0,0,0,0,0,0 +"1429.65393066406",1.92406962863676,2.47619822533908,0,0,0,0,0,0,0 +"1430.01513671875",0,0,0,0,0,3.84520124136348,0,0,0 +"1430.10546875",0,0,0,0,0,0,0,0,0 +"1430.21838378906",0,2.96379997085435,0,2.81822493664666,0,0,0,0,0 +"1430.4892578125",0,0,0,0,0,0,0,0,0 +"1430.55700683594",0,0,0,0,0,0,0,0,0 +"1430.82800292969",0,2.27169510055454,0,0,0,0,0,0,0 +"1431.09899902344",0,0,0,0,0,0,0,0,0 +"1431.2119140625",1.71842422801375,2.03367730323236,0,0,0,0,0,0,0 +"1431.66369628906",0,2.03367730323236,0,0,0,3.0188278666961,0,0,0 +"1431.95739746094",0,0,0,0,0,0,0,0,0 +"1432.09301757812",0,0,0,0,0,0,0,0,0 +"1432.43188476562",0,0,0,0,3.7387877671862,4.21301502361371,0,0,0 +"1432.65783691406",0,0,0,0,0,0,0,0,0 +"1432.8837890625",0,0,0,0,4.35319666840809,0,0,0,0 +"1433.13244628906",0,0,0,0,0,0,0,0,0 +"1433.24548339844",0,0,0,2.81822493664666,0,0,0,0,0 +"1433.62976074219",0,0,0,0,0,0,0,0,4.19829234600318 +"1433.90100097656",2.52808549985891,0,0,0,0,6.3040478203915,0,0,0 +"1434.28540039062",1.84902329951112,0,0,0,0,0,0,0,0 +"1434.60192871094",0,0,0,0,0,0,0,0,0 +"1434.96374511719",0,0,0,0,0,0,0,0,0 +"1435.30297851562",0,0,0,0,0,0,0,0,0 +"1435.59704589844",0,0,0,0,0,0,0,0,0 +"1435.8232421875",0,0,0,3.49375902676115,0,0,0,0,0 +"1435.93640136719",0,0,0,0,0,0,0,0,0 +"1436.07214355469",0,0,0,0,0,0,0,0,0 +"1436.38891601562",0,2.91422688695827,0,0,0,0,0,0,0 +"1436.50207519531",0,0,0,0,3.99643786201854,0,0,0,0 +"1436.72839355469",0,0,0,3.05095491960259,0,0,0,0,0 +"1436.97729492188",0,0,0,0,0,0,0,0,0 +"1437.20361328125",0,0,0,0,0,0,0,0,0 +"1437.45263671875",0,0,0,0,0,3.29135399143776,0,0,0 +"1437.70166015625",0,0,0,0,0,0,0,0,0 +"1438.0185546875",0,0,0,0,0,0,0,0,0 +"1438.08642578125",0,0,0,0,0,2.77486945065883,0,0,0 +"1438.51672363281",0,0,0,0,0,0,0,0,0 +"1438.7431640625",1.71230568950202,0,0,3.05204384050417,0,0,0,0,0 +"1439.06018066406",0,0,0,0,0,3.09008437779639,0,0,3.78129424136783 +"1439.53588867188",1.75016458923483,1.96340351765874,0,0,0,3.32788505750552,0,0,0 +"1440.01159667969",0,0,0,0,3.67884809015078,0,0,0,0 +"1440.44201660156",0,0,0,0,0,0,0,0,0 +"1440.75927734375",2.04991829893564,0,0,0,0,0,0,0,0 +"1441.21252441406",1.89572359903229,4.12901667419211,0,0,0,0,0,0,5.61154013082063 +"1441.98327636719",0,0,0,3.02689766802677,0,0,0,0,5.16805133136123 +"1442.32336425781",0,0,0,0,0,0,0,0,0 +"1442.48205566406",0,0,0,0,0,3.93433116254391,0,0,3.89945138262718 +"1442.57275390625",3.37084923637271,0,0,0,0,0,0,0,0 +"1442.75427246094",0,0,0,0,0,0,0,0,0 +"1443.0263671875",0,0,0,0,0,0,0,0,0 +"1443.41198730469",0,0,0,0,0,0,0,0,0 +"1443.66149902344",0,0,0,0,0,0,0,0,0 +"1443.97900390625",0,0,0,0,0,0,0,0,0 +"1444.13781738281",0,1.9495438808779,0,2.60094053971269,0,0,0,0,3.45653579093852 +"1444.36474609375",0,3.01043395743489,5.85984413668345,0,4.64589505434264,0,0,0,0 +"1445.13635253906",0,0,0,2.33076492328735,3.72344871324307,0,0,0,3.61200994188691 +"1445.52221679688",0,0,0,0,0,0,0,0,0 +"1445.59033203125",0,0,0,0,0,0,0,0,0 +"1446.04431152344",3.11647599630667,0,0,0,7.44979868658258,0,0,0,0 +"1446.65734863281",0,0,0,0,0,0,0,0,4.62852739140032 +"1446.86169433594",1.84856357271931,2.17548803007792,0,2.50490336765556,0,3.01880416811033,0,0,0 +"1447.58850097656",0,3.61725229672338,0,3.12184591918233,0,0,0,0,0 +"1448.08825683594",0,0,0,0,0,0,0,0,0 +"1448.33825683594",0,0,0,0,0,0,0,0,0 +"1448.61096191406",0,0,0,0,0,0,0,0,0 +"1448.67907714844",0,0,0,0,0,0,0,0,0 +"1449.15637207031",0,0,0,0,0,0,0,0,0 +"1449.40637207031",0,2.63008260030678,0,2.53004954013296,4.14304845676449,0,0,0,0 +"1449.79272460938",0,0,0,0,0,0,0,0,0 +"1450.08825683594",1.71706212456619,2.18756167820007,0,0,3.44198443607192,0,0,0,0 +"1450.67944335938",0,3.02252294126619,0,0,3.4188353370192,4.09826176562427,0,0,0 +"1451.08874511719",0,0,3.00636334973989,0,0,0,0,0,0 +"1451.47546386719",2.70042875999649,0,0,0,0,0,0,0,0 +"1451.88488769531",0,0,0,0,0,0,0,0,0 +"1452.22619628906",0,0,0,0,0,0,0,0,0 +"1452.45373535156",0,0,0,0,0,2.85228369808725,0,0,0 +"1452.70397949219",0,0,0,0,0,0,0,0,0 +"1452.97705078125",0,0,0,0,0,0,0,0,0 +"1453.25012207031",0,0,0,0,0,3.00014651212271,0,0,0 +"1453.61437988281",2.21473395530556,0,0,0,0,0,0,0,0 +"1453.91027832031",0,0,0,3.05204384050417,0,0,0,0,0 +"1454.13793945312",0,0,0,0,0,2.90407460870667,0,0,4.11042138586333 +"1454.54772949219",0,0,0,0,0,0,0,0,0 +"1454.70715332031",0,0,0,0,0,0,0,0,0 +"1455.00317382812",0,0,0,0,0,0,0,0,0 +"1455.11706542969",0,0,0,0,0,0,0,0,0 +"1455.27648925781",0,0,0,0,0,0,0,0,0 +"1455.77758789062",0,3.39130814752337,0,0,0,0,0,0,0 +"1456.16491699219",0,0,0,0,0,0,0,0,0 +"1456.41552734375",0,0,0,0,4.19413248157561,5.16243582000079,0,0,0 +"1456.68896484375",1.70346428971365,1.9535286441142,0,0,0,0,0,0,0 +"1457.19030761719",0,0,0,2.92256130233671,0,0,0,0,0 +"1457.48657226562",0,0,0,2.60094053971269,3.20870292361544,0,0,0,0 +"1457.85131835938",0,0,5.04762579907155,0,0,0,0,0,0 +"1458.05639648438",0,0,0,0,0,0,0,0,0 +"1458.12487792969",0,0,0,4.7816562103788,0,0,0,0,0 +"1458.26159667969",0,0,0,0,0,0,0,0,0 +"1458.42126464844",1.80731637523557,0,0,0,0,0,0,0,0 +"1458.51245117188",0,0,0,0,0,0,0,0,0 +"1458.67199707031",0,0,0,0,0,0,0,0,0 +"1458.9912109375",0,2.23765759505653,0,0,6.33718673475949,0,0,0,0 +"1459.40173339844",0,0,0,0,0,0,0,0,0 +"1459.6298828125",0,0,0,0,0,0,0,0,4.56908838095344 +"1460.08605957031",0,0,0,0,0,0,0,0,0 +"1460.2685546875",0,0,0,0,0,0,0,0,0 +"1460.63366699219",0,0,0,0,0,0,0,0,0 +"1460.72497558594",0,2.99836030931273,0,0,0,3.80786223080247,0,0,0 +"1461.24975585938",0,0,0,2.69700965194097,0,0,0,0,0 +"1461.40954589844",0,0,0,0,0,0,0,0,0 +"1461.5693359375",0,0,0,2.62611865236124,0,0,0,0,0 +"1461.70629882812",0,0,0,0,0,0,0,0,0 +"1461.86608886719",0,0,0,0,0,0,0,0,0 +"1461.95739746094",0,0,0,0,0,0,0,0,0 +"1462.20849609375",0,0,0,0,0,0,0,0,0 +"1462.27697753906",0,0,0,0,0,0,0,0,0 +"1462.52807617188",0,0,0,0,0,0,0,0,0 +"1462.80212402344",0,0,3.60994849073039,0,0,0,0,0,0 +"1462.98486328125",0,0,2.77387341383984,0,0,0,0,0,0 +"1463.28173828125",0,0,0,0,0,0,0,0,0 +"1463.69274902344",2.18142578095444,0,0,3.02689766802677,0,0,0,0,0 +"1464.01257324219",0,0,0,0,0,0,0,0,0 +"1464.08117675781",0,0,0,0,0,0,0,0,0 +"1464.17248535156",0,0,0,0,0,0,0,0,0 +"1464.46948242188",0,0,4.16027549795328,0,0,0,0,0,0 +"1464.5380859375",0,3.57923002798908,0,0,0,0,0,0,0 +"1465.10925292969",0,0,0,0,0,0,0,0,0 +"1465.17785644531",0,3.46107443584576,0,0,0,0,0,0,0 +"1465.72644042969",0,0,0,0,0,2.90407460870667,0,0,0 +"1465.97778320312",0,3.0565604467642,0,0,0,3.16134088889667,0,0,0 +"1466.41223144531",0,0,0,0,0,0,0,0,0 +"1466.572265625",1.69870785464948,0,3.38459720163331,0,0,0,0,0,0 +"1467.05236816406",0,0,0,0,0,0,0,0,0 +"1467.39538574219",0,0,0,0,0,0,0,0,0 +"1467.80712890625",0,0,0,0,0,0,0,0,0 +"1468.03588867188",0,0,0,2.55522765278151,0,0,0,0,0 +"1468.15026855469",3.21487497979115,0,0,0,0,0,0,0,0 +"1468.4248046875",0,0,0,0,0,0,0,0,0 +"1468.76794433594",0,0,0,2.50490336765556,0,0,0,0,0 +"1469.11120605469",0,0,0,0,0,0,0,0,0 +"1469.36291503906",1.69416316313348,0,0,0,0,0,0,0,0 +"1469.7978515625",1.84856357271931,2.82251207696917,0,0,3.56492312820779,0,0,0,3.19501183725156 +"1470.11828613281",0,0,0,0,0,0,0,0,0 +"1470.39294433594",0,1.94143966028289,0,0,0,0,0,0,2.81533074230523 +"1470.69055175781",0,0,0,0,3.22296477396416,4.04566291051161,0,0,4.39543538740633 +"1471.21728515625",0,2.45961698102025,0,0,0,0,0,0,0 +"1471.46911621094",0,0,0,0,0,0,0,0,0 +"1471.72106933594",0,2.23765759505653,0,0,0,0,0,0,0 +"1471.9501953125",0,0,3.00636334973989,0,0,0,0,0,0 +"1472.11047363281",0,0,0,0,0,0,0,0,0 +"1472.40832519531",0,0,0,0,0,0,0,0,0 +"1472.72900390625",0,3.40287429839429,0,0,0,0,0,0,0 +"1473.07275390625",0,2.34196888612816,0,0,0,0,0,0,3.78566293543403 +"1473.48522949219",0,0,0,0,0,0,0,0,0 +"1473.71435546875",0,0,4.16110633130577,0,0,0,0,0,0 +"1474.01232910156",0,0,0,0,0,0,0,0,0 +"1474.26452636719",0,0,0,0,0,0,0,0,0 +"1474.49377441406",0,2.04576628706367,0,0,0,0,0,0,0 +"1474.63134765625",0,0,0,0,0,0,0,0,0 +"1474.81469726562",0,0,0,0,0,0,0,0,0 +"1475.06701660156",0,0,0,0,0,0,0,0,3.30050524551986 +"1475.47973632812",0,0,4.23438152099839,0,3.57972358035371,0,0,0,0 +"1475.96130371094",2.09620717909186,0,0,0,0,0,0,0,0 +"1476.19079589844",0,2.14197335754029,0,3.7387884707091,0,3.29135399143776,0,0,0 +"1476.55773925781",0,0,0,0,0,0,0,0,0 +"1476.67248535156",0,0,0,0,0,0,0,0,0 +"1476.87902832031",0,0,0,3.37254374205547,0,0,0,0,0 +"1477.3837890625",0,0,3.83613061317995,0,3.58807222726051,0,0,0,0 +"1477.81982421875",0,0,0,0,0,0,0,0,0 +"1477.98046875",0,0,0,0,0,0,0,0,0 +"1478.04931640625",0,0,0,0,0,3.54783602572029,0,0,0 +"1478.48547363281",0,0,0,0,0,0,0,0,0 +"1478.64624023438",0,0,0,0,0,0,0,0,0 +"1478.71508789062",0,0,0,0,0,0,0,0,0 +"1479.05944824219",0,0,0,0,0,0,0,0,0 +"1479.2890625",0,0,3.00636334973989,0,0,0,0,0,0 +"1479.47277832031",0,0,0,0,5.28345305461725,0,0,0,0 +"1479.86315917969",0,0,6.16480279888424,0,3.14874744834017,0,0,0,0 +"1480.27661132812",0,0,0,0,0,0,0,0,0 +"1480.36853027344",0,0,0,0,0,0,0,0,0 +"1480.4375",0,0,0,0,0,0,0,0,0 +"1480.73608398438",0,0,0,0,0,0,0,0,0 +"1480.87390136719",0,0,0,0,4.16687843734315,0,0,0,0 +"1481.33349609375",0,0,0,0,0,0,0,0,0 +"1481.58630371094",0,2.43819129231393,0,0,0,0,0,0,0 +"1481.90795898438",0,0,0,0,0,0,0,0,0 +"1482.02294921875",0,0,0,0,0,0,0,0,0 +"1482.09191894531",1.89096716396812,0,0,0,0,0,0,0,0 +"1482.41369628906",0,1.98755081390305,0,0,0,0,0,0,0 +"1482.71252441406",0,0,0,0,0,0,0,0,0 +"1482.78149414062",0,0,0,0,0,0,0,0,0 +"1482.87341308594",0,0,0,0,0,0,0,0,0 +"1483.17236328125",0,0,0,0,0,0,0,0,2.60930264090603 +"1483.51721191406",0,0,0,0,0,0,0,0,0 +"1483.60925292969",0,2.6762090896361,0,0,0,0,0,0,0 +"1483.77014160156",0,0,0,0,0,0,0,0,0 +"1483.86218261719",0,0,0,0,0,0,0,0,3.59932939559539 +"1484.34521484375",0,0,0,0,0,3.77392103167742,0,0,0 +"1484.62121582031",0,0,0,2.50490336765556,0,0,0,0,0 +"1484.96630859375",0,0,0,0,0,0,0,0,0 +"1485.21936035156",0,0,0,0,0,0,0,0,0 +"1485.28845214844",0,0,0,2.92256130233671,0,0,0,0,0 +"1485.77160644531",0,0,0,0,0,4.13560077618529,0,0,0 +"1486.41613769531",0,0,0,0,0,0,0,0,0 +"1486.64624023438",0,2.72630500649255,0,2.33076492328735,0,0,0,0,0 +"1487.15270996094",0,0,0,2.81822493664666,0,0,0,0,3.51145843545554 +"1487.42907714844",1.84856357271931,0,0,2.81822493664666,0,3.63696594690072,0,0,0 +"1488.14294433594",0,0,0,2.67644293748719,5.95781743111442,0,0,0,3.62526369594916 +"1488.37329101562",0,2.27169510055454,3.53667330103776,0,3.23131342087096,0,0,0,0 +"1488.833984375",0,0,0,0,0,0,0,0,0 +"1489.47900390625",0,0,0,0,0,0,0,0,0 +"1489.75561523438",0,0,0,0,0,0,0,0,0 +"1489.98596191406",0,0,0,2.33076492328735,0,3.06526898548063,0,0,0 +"1490.37780761719",0,0,0,0,0,0,0,0,0 +"1490.70056152344",0,0,0,2.40165592286708,3.18433434123958,0,0,0,0 +"1491.02319335938",0,0,0,0,0,0,0,0,0 +"1491.43823242188",0,0,0,0,0,0,0,0,0 +"1491.66882324219",0,0,0,2.7304550180513,3.20035427670865,0,0,0,0 +"1491.96862792969",0,0,3.30498982852959,0,0,0,0,0,0 +"1492.38366699219",0,0,0,0,4.93914784031423,0,0,0,0 +"1492.89123535156",0,0,0,2.33076492328735,0,0,0,0,0 +"1493.02954101562",0,0,2.77387341383984,0,0,4.34302812615479,0,0,4.90273189137881 +"1493.26025390625",0,0,0,0,0,0,0,0,0 +"1493.58325195312",0,0,0,0,0,0,0,0,0 +"1494.02172851562",0,0,0,0,0,0,0,0,0 +"1494.22937011719",0,0,0,0,0,0,0,0,4.29053200020923 +"1494.4140625",0,2.10793585204228,0,0,0,0,0,0,0 +"1494.66796875",0,0,0,0,0,0,0,0,0 +"1494.921875",0,1.9495438808779,3.85531683575249,2.94770747481412,4.37754945254411,0,0,0,3.75480354654378 +"1495.38354492188",0,0,0,2.94770747481412,0,0,0,0,0 +"1495.84533691406",0,2.17548803007792,0,0,0,0,0,0,0 +"1496.35339355469",0,0,0,0,0,0,0,0,0 +"1496.76916503906",0,0,0,0,0,0,0,0,0 +"1497.00012207031",0,2.03367730323236,2.95144354926732,0,0,0,0,0,3.0768546959922 +"1497.36975097656",0,0,0,0,0,0,0,0,0 +"1497.78564453125",0,0,0,3.29707328445212,0,0,0,0,0 +"1498.24780273438",0,0,0,0,0,0,0,0,0 +"1498.501953125",1.78781174541947,0,0,0,0,0,0,0,0 +"1498.73315429688",0,0,0,0,0,0,0,0,4.49010248080965 +"1499.28784179688",0,2.14197335754029,0,0,0,0,0,0,0 +"1499.54211425781",0,0,0,0,0,0,0,0,0 +"1499.79650878906",0,0,0,0,0,0,0,0,4.86356065026324 +"1500.02770996094",0,0,2.76099500471779,0,0,0,0,0,0 +"1500.30517578125",0,0,0,0,0,0,0,0,0 +"1500.69836425781",0,0,0,0,0,4.43296599182847,0,0,4.72513573967257 +"1501.34606933594",3.13618633580525,0,0,2.72215582441838,0,0,0,0,0 +"1501.78564453125",0,0,0,0,0,0,0,0,0 +"1501.85498046875",0,0,0,2.62611865236124,0,0,0,0,0 +"1502.06323242188",0,0,0,0,0,0,0,0,0 +"1502.43347167969",0,0,0,0,0,0,0,0,0 +"1502.66491699219",0,2.18756167820007,0,0,0,2.92354020918754,0,0,0 +"1502.94262695312",0,2.52180188170801,0,0,0,3.30922740151791,0,0,0 +"1503.33618164062",0,0,0,0,0,0,0,0,0 +"1503.70654296875",0,0,0,0,0,0,0,0,0 +"1504.00756835938",2.37389079995556,0,0,2.74733393706692,0,0,0,0,4.09337214550562 +"1504.40112304688",0,0,0,0,0,0,0,0,0 +"1504.6328125",0,0,0,0,0,0,0,0,0 +"1504.93383789062",0,0,0,0,3.18790068462211,3.12402557692144,0,0,0 +"1505.18859863281",0,0,6.29216695569695,0,0,0,0,0,3.94113708638241 +"1505.55920410156",0,0,0,0,0,0,0,0,0 +"1505.8603515625",0,0,0,0,0,0,0,0,0 +"1506.115234375",0,0,0,0,0,0,0,0,0 +"1506.462890625",1.74131715558078,0,3.92778556205323,0,0,0,0,0,0 +"1506.97265625",0,3.59130367611123,0,0,0,0,0,0,0 +"1507.36669921875",0,3.10665636362066,0,0,0,0,0,0,0 +"1507.80712890625",0,0,0,0,0,0,0,0,3.5203434954516 +"1508.24768066406",0,2.07169957196667,0,0,0,0,0,0,0 +"1508.54907226562",0,0,0,0,0,5.12771037496827,0,0,0 +"1508.64184570312",1.79731858168213,0,0,2.50490336765556,0,0,0,0,0 +"1508.96655273438",0,0,0,3.46861285428375,0,0,0,0,0 +"1509.52319335938",0,0,0,0,0,0,0,0,3.16909435019825 +"1509.63916015625",0,0,4.50363097525975,0,0,0,0,0,0 +"1509.91760253906",0,0,0,0,0,0,0,0,4.42192608223038 +"1510.19592285156",0,0,0,0,0,0,0,0,0 +"1510.38159179688",1.90435928913818,0,0,0,0,0,0,0,0 +"1510.68322753906",0,0,0,0,0,3.09008437779639,0,0,0 +"1511.00805664062",0,0,0,0,0,0,0,0,0 +"1511.14733886719",0,0,0,0,0,0,0,0,0 +"1511.30981445312",0,0,0,2.65126482483864,4.09144162839601,0,0,0,0 +"1511.75085449219",0,3.87943272599901,0,0,3.13683245805084,0,0,0,0 +"1512.09912109375",0,0,0,0,0,3.44004844855224,0,0,0 +"1512.67956542969",0,3.55728150632238,5.76735835445768,0,3.62896775042295,0,0,0,4.85273433539826 +"1513.26013183594",0,0,0,0,3.40638174493266,0,0,0,0 +"1513.56201171875",3.47292176521642,0,0,0,0,0,0,0,0 +"1513.81750488281",0,0,0,0,0,0,0,0,0 +"1514.07312011719",1.92406962863676,0,0,2.92256130233671,0,0,0,0,0 +"1514.25891113281",0,0,0,0,0,4.20685728728557,0,0,0 +"1514.51452636719",0,0,0,2.65126482483864,0,0,0,0,4.30376894097102 +"1514.86303710938",0,0,0,0,0,0,0,0,0 +"1515.35107421875",1.64135035896626,0,0,0,0,0,0,0,0 +"1515.60668945312",0,0,0,0,0,3.89777639789037,0,0,4.91539562436986 +"1515.86242675781",1.78801745510195,0,0,0,0,0,0,0,3.76861369507631 +"1516.32739257812",0,0,0,0,0,0,0,0,0 +"1516.55981445312",0,2.1760108630383,3.06045231685998,0,0,0,0,0,3.33780544190842 +"1517.07141113281",0,0,0,0,0,0,0,4.25540708496905,0 +"1517.25744628906",0,0,0,0,4.99748751019789,0,0,0,0 +"1517.3271484375",0,0,0,0,0,3.05274536723537,0,0,0 +"1517.60632324219",0,2.72630500649255,0,0,4.89163015888565,0,0,0,0 +"1518.25756835938",0,0,0,0,0,0,0,0,0 +"1518.39709472656",0,2.12988437370898,0,0,0,0,0,0,0 +"1518.8857421875",0,3.0565604467642,0,0,0,0,0,0,0 +"1519.46752929688",0,0,0,0,0,0,0,0,0 +"1519.58386230469",0,2.18756167820007,0,0,0,0,0,0,0 +"1519.9794921875",1.75470928075083,0,0,0,0,0,0,0,0 +"1520.09594726562",0,0,0,0,0,0,0,0,0 +"1520.421875",2.16823936546686,2.48377961297371,0,0,0,0,0,0,0 +"1520.86413574219",0,0,0,0,0,0,0,0,0 +"1520.98059082031",0,0,0,0,3.16120104042671,0,0,0,0 +"1521.46960449219",0,0,0,2.86851728160146,0,0,0,0,0 +"1521.70251464844",0,0,0,2.65126482483864,0,3.07142672180877,0,0,0 +"1522.21484375",1.700481377462,0,0,0,0,0,0,0,0 +"1522.47119140625",2.24217760825428,0,0,2.62611865236124,0,0,0,0,0 +"1522.79724121094",0,0,0,0,0,0,0,0,0 +"1523.07690429688",0,0,4.68591493254503,0,0,0,0,0,0 +"1523.49633789062",0,0,0,2.40165592286708,0,0,0,0,0 +"1523.63610839844",0,2.03367730323236,0,0,0,0,0,0,0 +"1523.869140625",3.01964482595224,4.27133489828889,0,3.05204384050417,0,4.064344265085,0,0,0 +"1524.28869628906",0,0,0,0,0,0,0,32.0889920323943,0 +"1525.08129882812",1.85745327993452,0,0,0,0,0,0,53.4563676389946,0 +"1525.82751464844",0,0,0,2.94770747481412,0,0,0,33.1883360471658,0 +"1526.24731445312",0,0,0,0,0,0,120.607179158645,0,0 +"1526.62060546875",2.05624254712985,2.42610230848262,0,0,0,0,0,17.7839911997211,0 +"1526.97045898438",0,0,0,0,3.25977115018671,0,0,0,0 +"1527.46044921875",0,2.61800895218463,0,0,3.88487555837479,0,74.5331069044028,9.22819474327054,0 +"1527.95056152344",0,0,0,0,0,0,0,0,0 +"1528.27722167969",0,2.04576628706367,2.7069060375977,0,0,0,0,4.01082101949016,0 +"1528.67407226562",2.54167730084576,0,0,0,0,0,0,0,0 +"1528.9775390625",0,0,0,0,0,0,26.1888107073342,6.7356348930789,0 +"1529.4912109375",0,2.48776437621,0,0,0,0,0,0,0 +"1529.88818359375",0,2.03367730323236,0,0,0,0,0,0,0 +"1530.07495117188",0,2.66412010580479,0,0,4.04514343029058,0,11.0246713263966,0,0 +"1530.5654296875",0,0,0,0,0,3.01267013036797,0,0,0 +"1530.86901855469",0,0,0,0,0,0,0,0,0 +"1531.1494140625",0,0,0,0,3.62722546354245,0,0,0,0 +"1531.68676757812",2.64871800830181,1.9754771657809,0,0,0,0,0,4.28844733673319,3.21964830064907 +"1532.34106445312",0,0,0,0,0,0,0,0,0 +"1532.52807617188",0,0,0,0,0,0,0,0,0 +"1532.76184082031",0,0,0,0,0,2.77486945065883,0,0,0 +"1533.04223632812",0,0,0,0,0,0,0,0,0 +"1533.34619140625",3.3604400234543,1.9754771657809,0,0,0,4.33687038982666,0,0,0 +"1533.76708984375",0,1.94143966028289,0,0,0,0,0,0,0 +"1534.11779785156",0,0,0,0,0,0,0,0,0 +"1534.23474121094",1.82178535624488,0,0,2.92256130233671,0,0,0,0,0 +"1534.56213378906",0,0,0,0,0,0,0,0,0 +"1534.8662109375",0,0,0,2.33076492328735,0,0,0,0,0 +"1535.05334472656",0,0,0,0,0,0,0,0,0 +"1535.14685058594",2.31768366417173,0,0,0,0,0,0,0,0 +"1535.28723144531",0,0,0,0,0,0,0,0,0 +"1535.52124023438",0,0,0,3.14699209165973,0,0,0,0,0 +"1535.77856445312",0,0,0,0,0,0,0,0,0 +"1536.12951660156",0,0,0,0,0,0,0,0,0 +"1536.45715332031",2.47228978344004,2.50971289787671,6.84249396291984,0,0,0,0,0,0 +"1536.80822753906",0,0,0,0,0,4.19433366904031,0,0,0 +"1537.01879882812",0,2.27169510055454,0,0,0,0,0,0,0 +"1537.48706054688",0,0,0,0,0,0,0,0,0 +"1537.60400390625",0,0,0,0,0,0,0,0,0 +"1537.72106933594",0,0,5.56038682454126,0,0,0,0,0,0 +"1537.86157226562",0,0,0,0,5.20869712719606,0,0,0,0 +"1538.00207519531",0,0,0,0,0,0,0,0,0 +"1538.119140625",1.78215896756524,0,0,0,0,0,0,0,0 +"1538.42358398438",1.73677246406477,0,0,2.65126482483864,0,0,0,0,0 +"1539.24328613281",0,0,0,0,0,0,0,0,0 +"1539.4072265625",0,0,0,0,0,0,0,0,0 +"1539.4775390625",0,0,0,2.60094053971269,0,0,0,0,0 +"1539.78210449219",0,0,0,0,0,0,0,0,0 +"1540.08666992188",0,0,0,0,0,0,0,0,3.71805974462549 +"1540.48498535156",0,0,0,0,0,0,0,0,0 +"1541.00048828125",1.75946571581501,1.9754771657809,2.62729866449399,2.81822493664666,0,0,0,0,0 +"1541.65686035156",0,0,0,2.33076492328735,3.39804889626571,4.6334276609766,0,4.83756362219344,0 +"1542.33666992188",2.11632290408971,0,0,0,0,0,0,12.5872392069004,0 +"1542.89953613281",0,3.29510107704675,0,0,0,0,0,0,0 +"1543.15747070312",0,0,0,2.65126482483864,0,0,0,0,0 +"1543.50927734375",0,0,0,0,0,0,0,0,0 +"1543.65002441406",0,0,0,0,0,0,0,0,2.7780137326162 +"1543.95495605469",0,0,0,0,0,0,0,0,0 +"1544.30688476562",0,0,0,2.33076492328735,0,0,0,0,3.4059818404877 +"1544.56494140625",0,0,0,4.03523112068457,3.21279207055533,0,0,0,3.4059818404877 +"1545.22204589844",0,0,0,0,0,0,0,0,3.0768546959922 +"1545.55065917969",0,0,2.93308816004727,2.65126482483864,0,0,0,0,0 +"1546.18444824219",0,0,0,0,0,0,0,0,0 +"1546.34875488281",0,0,3.23171463883697,0,0,0,0,0,2.64661965059505 +"1546.72448730469",0,0,0,0,0,0,0,0,0 +"1546.86535644531",0,0,0,0,0,0,0,0,2.60930264090603 +"1547.17053222656",0,0,0,0,0,0,0,0,0 +"1547.66381835938",0,0,0,0,0,0,0,0,2.95869755473284 +"1547.82824707031",0,0,0,3.14699209165973,0,0,0,0,0 +"1548.34497070312",0,0,0,0,0,0,0,0,0 +"1548.57995605469",0,0,0,0,0,0,0,0,0 +"1549.0498046875",0,0,0,0,0,0,0,0,0 +"1549.19079589844",0,0,0,0,0,0,0,0,0 +"1549.33190917969",0,0,0,0,0,0,0,0,0 +"1549.42590332031",0,0,0,0,0,0,0,0,0 +"1549.77844238281",1.64271246241382,0,0,0,0,0,0,0,0 +"1550.15441894531",0,0,0,0,0,0,0,0,0 +"1550.31896972656",0,0,0,0,0,0,0,0,0 +"1550.48352050781",0,0,0,0,0,0,0,0,0 +"1550.64819335938",0,0,0,0,0,0,0,0,0 +"1550.7421875",0,0,0,0,0,0,0,0,0 +"1550.88330078125",0,2.97242702440973,0,2.55522765278151,0,0,0,0,3.18233129096004 +"1551.37707519531",0,0,0,0,0,0,0,0,3.9240878460247 +"1551.75329589844",0,0,0,0,0,0,0,0,0 +"1551.94140625",0,3.92554387961918,0,0,0,0,0,0,0 +"1552.458984375",0,2.43819129231393,0,0,3.92168193459735,0,0,0,0 +"1552.76477050781",0,0,0,0,0,0,37.0241780726931,0,0 +"1553.35302734375",0,0,0,0,0,0,0,0,3.44328203687627 +"1553.68237304688",2.80787485295181,0,0,0,0,0,0,0,0 +"1553.98840332031",1.70801501509535,0,0,0,0,0,20.2379921613135,5.84074492571778,0 +"1554.45910644531",0,2.22610677989475,0,0,5.26865260247133,0,0,0,4.34108595066005 +"1554.95349121094",0,0,0,0,0,0,0,5.09348556183219,0 +"1555.306640625",9.60102402641688,0,3.72162049552869,2.82649219010843,0,0,8.67720995619785,0,0 +"1555.73046875",0,0,0,0,0,0,0,0,0 +"1555.98950195312",0,0,0,0,0,0,0,0,0 +"1556.36633300781",2.7849758915191,0,2.83429456437102,0,0,0,0,0,0 +"1556.83752441406",0,0,0,4.04349837414635,0,0,0,0,0 +"1557.37927246094",6.07577438045835,0,2.68138763161408,0,0,0,0,4.87001211197239,0 +"1557.89770507812",2.15716471607417,0,0,0,0,0,0,0,0 +"1558.18054199219",0,0,0,0,0,0,0,0,0 +"1558.29833984375",2.3265250639601,0,0,0,0,0,0,0,0 +"1558.81689453125",0,0,0,0,0,0,0,0,0 +"1558.9111328125",0,2.43819129231393,0,0,0,0,0,0,0 +"1559.02905273438",0,1.9495438808779,0,0,0,0,0,0,3.0768546959922 +"1559.42980957031",0,0,0,0,0,0,0,0,0 +"1559.64196777344",0,2.91422688695827,0,0,0,0,0,0,0 +"1559.99572753906",1.73247575579241,0,0,0,0,0,0,4.95986385423451,0 +"1560.23156738281",1.6429181720963,0,0,2.33076492328735,0,3.51130495965253,0,0,0 +"1560.51452636719",0,0,0,2.92256130233671,0,0,0,5.57348711191917,0 +"1560.8447265625",1.79256214661796,0,0,2.7210669035168,0,0,0,0,0 +"1561.29296875",0,0,0,2.4257131744429,0,0,0,0,0 +"1561.76477050781",0,0,0,0,0,0,0,0,0 +"1562.09509277344",1.83517748141494,0,0,0,0,0,0,0,0 +"1562.37829589844",0,3.94918367861226,0,0,0,0,0,0,0 +"1562.63793945312",0,0,0,0,0,0,0,0,0 +"1562.87390136719",0,0,0,0,0,0,0,0,0 +"1562.96826171875",0,0,0,0,0,0,0,0,2.5676169371508 +"1563.20434570312",0,0,0,0,0,0,0,0,0 +"1563.79455566406",1.99867330789846,0,0,0,0,0,0,0,0 +"1563.88903808594",0,0,0,0,0,0,0,0,0 +"1564.03063964844",0,0,0,0,0,0,0,0,0 +"1564.31396484375",2.50837516036033,0,0,0,0,3.96905660757643,0,0,0 +"1564.69189453125",0,0,0,0,0,0,0,0,0 +"1564.92797851562",0,0,0,0,3.75124135927274,0,0,0,0 +"1565.16418457031",0,0,0,0,0,0,0,0,0 +"1565.23510742188",0,0,0,2.33076492328735,0,0,0,0,0 +"1565.58935546875",0,0,0,0,0,0,0,0,0 +"1565.80200195312",0,0,0,0,0,0,0,0,3.33837864967917 +"1566.08557128906",0,0,0,2.33076492328735,0,0,0,0,0 +"1566.53442382812",0,0,0,0,0,0,0,0,0 +"1566.60534667969",0,0,0,0,0,0,0,0,0 +"1566.84167480469",0,0,0,0,0,0,0,0,0 +"1567.12524414062",0,0,2.85348078694355,0,0,0,0,0,0 +"1567.31433105469",0,0,0,0,0,0,0,0,0 +"1567.55078125",0,0,0,0,0,0,0,0,0 +"1567.76342773438",1.72317462921223,0,0,0,0,0,0,0,0 +"1568.02355957031",0,2.88018938146026,5.46790104231549,3.61757318600341,0,0,0,0,0 +"1568.56726074219",0,0,0,0,0,0,0,0,0 +"1569.15856933594",0,0,0,0,5.06207073421026,0,0,0,0 +"1569.46594238281",0,2.27169510055454,0,0,0,0,0,0,2.65985659135685 +"1569.96276855469",0,0,0,0,0,0,0,0,0 +"1570.38854980469",1.91821114110004,0,0,0,0,3.07140302322299,0,0,0 +"1570.79077148438",2.34446188064616,0,2.71895361336727,0,0,0,0,0,0 +"1571.31140136719",4.23584046397924,0,3.02474310892054,3.25132845734979,0,0,0,0,0 +"1571.73742675781",0,0,0,2.72215582441838,3.93237744156353,0,0,0,0 +"1572.30554199219",2.79407734228248,0,0,0,0,0,0,0,3.9152195993291 +"1572.7080078125",0,0,0,0,0,0,0,0,0 +"1572.82641601562",0,0,0,3.37254374205547,0,0,0,0,4.60203669657627 +"1573.15795898438",0,0,0,0,0,0,0,0,0 +"1573.41845703125",0,0,0,0,0,0,0,0,0 +"1573.72631835938",3.63683504493059,2.77189332715234,6.65390219218407,0,0,0,0,0,0 +"1574.17639160156",0,0,0,0,0,0,0,0,0 +"1574.31848144531",0,2.91474971991865,0,0,0,0,0,0,3.4059818404877 +"1574.65014648438",0,0,0,0,0,0,0,0,0 +"1574.91076660156",0,0,0,0,0,0,0,0,0 +"1575.05285644531",0,0,0,0,0,0,0,0,0 +"1575.19506835938",2.60379726545884,0,0,0,0,0,0,0,0 +"1575.45568847656",0,0,0,0,0,0,0,0,0 +"1575.69274902344",0,0,0,0,0,0,0,0,2.9624930410283 +"1576.21411132812",0,0,0,0,0,0,0,4.48045406613272,0 +"1576.99645996094",0,0,0,0,0,0,0,0,0 +"1577.25720214844",1.74607962451064,0,3.00553251638741,0,0,0,0,0,3.37260798895779 +"1577.61291503906",0,0,0,0,0,0,0,0,0 +"1577.77893066406",0,0,0,0,0,0,0,0,0 +"1578.25329589844",1.63407677230793,2.18756167820007,3.06045231685998,0,0,0,0,0,0 +"1578.70397949219",0,0,0,0,0,4.33687038982666,0,0,0 +"1578.91748046875",0,0,3.05962148350749,2.62611865236124,0,4.33687038982666,0,0,0 +"1579.24963378906",0,0,0,0,0,0,0,0,0 +"1579.36828613281",2.59318234285796,0,0,3.98490683555862,0,0,0,0,0 +"1579.8427734375",2.17708076525523,0,0,2.33076492328735,0,0,0,0,0 +"1580.00891113281",0,0,0,0,0,0,0,0,2.69717360104588 +"1580.48364257812",2.65801913488199,0,0,0,0,0,0,0,0 +"1581.02954101562",2.06032751185405,0,0,0,0,0,0,0,0 +"1581.33813476562",0,0,0,0,0,0,0,0,0 +"1581.623046875",1.69891959819765,0,0,0,3.52985903886574,0,0,0,0 +"1582.1455078125",0,0,0,0,0,0,0,0,0 +"1582.40673828125",0,0,0,0,0,0,0,0,0 +"1582.85803222656",0,0,0,2.72215582441838,4.58238903392468,0,0,0,0 +"1583.42810058594",2.75323553029802,0,0,0,0,0,0,4.02168040759392,2.60930264090603 +"1583.92712402344",0,0,0,0,0,0,0,0,0 +"1584.1884765625",0,0,0,0,4.52243355864941,0,0,0,0 +"1584.3310546875",0,0,0,0,0,0,0,0,3.68721716903571 +"1584.56872558594",0,2.03367730323236,0,0,0,0,0,0,4.43517983629263 +"1584.92517089844",0,0,2.62729866449399,0,0,0,0,0,0 +"1585.11535644531",0,0,0,0,0,0,0,0,0 +"1585.35302734375",0,3.0565604467642,0,0,0,0,0,0,0 +"1585.68591308594",2.21316614217552,0,0,0,0,0,0,0,0 +"1585.87609863281",0,0,0,0,0,0,0,0,0 +"1585.97119140625",0,0,0,0,0,0,0,0,0 +"1586.16137695312",0,0,0,2.80134601763103,0,0,0,0,0 +"1586.54187011719",0,0,3.25092523137011,0,0,0,0,0,0 +"1587.25537109375",0,0,0,0,0,0,0,0,0 +"1587.421875",0,0,0,0,0,0,0,0,0 +"1587.73120117188",0,0,0,0,0,0,0,0,0 +"1588.04040527344",0,0,3.08513988949112,2.53004954013296,0,0,0,0,0 +"1588.51635742188",2.42968048250874,0,0,0,0,0,0,0,0 +"1588.84948730469",0,0,3.47625215050659,0,0,0,0,0,0 +"1589.20642089844",0,0,0,0,0,0,0,0,0 +"1589.34924316406",0,2.07978845685253,0,0,3.21279207055533,0,0,0,0 +"1589.61108398438",0,0,0,0,3.22470706084466,0,0,5.75464885181818,0 +"1590.03955078125",0,2.18756167820007,0,0,5.41472459542007,0,0,0,0 +"1590.4443359375",0,2.03367730323236,0,0,0,0,0,0,0 +"1590.70629882812",0,0,0,0,0,0,0,0,0 +"1591.20629882812",0,0,0,0,0,0,0,0,0 +"1591.53979492188",0,0,0,0,0,0,0,0,0 +"1591.63500976562",0,0,0,2.72215582441838,0,0,0,0,0 +"1592.0400390625",0,0,0,0,0,0,0,0,0 +"1592.32592773438",0,2.43766845935355,0,3.02689766802677,0,0,0,0,0 +"1592.75476074219",0,0,0,0,0,0,0,0,0 +"1593.01684570312",0,0,2.62729866449399,0,0,0,0,0,0 +"1593.30285644531",1.66106069846484,0,0,0,0,3.45870610453986,0,0,0 +"1593.56494140625",0,0,0,0,0,0,0,0,0 +"1593.7080078125",0,0,0,0,0,0,0,0,0 +"1593.8271484375",0,0,0,0,0,0,0,0,0 +"1594.232421875",0,0,0,0,0,0,0,0,0 +"1594.51843261719",0,0,0,0,0,0,0,0,0 +"1594.58996582031",0,0,0,0,0,0,0,0,4.18505540524139 +"1595.01916503906",0,0,0,0,0,0,0,0,0 +"1595.18603515625",1.8911728736506,0,3.78204164605986,0,0,0,0,0,0 +"1595.59143066406",0,0,0,0,0,0,0,0,0 +"1595.71069335938",0,0,0,0,0,0,0,0,0 +"1595.97302246094",0,0,0,0,0,0,0,0,0 +"1596.35473632812",0,0,0,0,0,0,0,0,0 +"1596.59326171875",1.79100036735361,0,0,2.33076492328735,0,0,0,0,0 +"1596.9033203125",0,0,0,0,0,0,0,0,0 +"1597.21350097656",0,0,0,0,0,0,0,0,2.76477679185441 +"1597.49987792969",0,0,0,0,0,0,0,0,0 +"1597.69079589844",0,0,0,2.33076492328735,0,0,0,4.01082101949016,0 +"1597.97717285156",0,0,0,0,0,0,0,0,0 +"1598.4306640625",0,0,0,0,0,0,0,0,0 +"1598.55004882812",0,0,0,3.12293484008391,0,0,0,0,0 +"1598.88427734375",0,3.10267160038436,0,3.66068719839802,0,0,0,0,0 +"1599.64819335938",0,2.77189332715234,0,0,0,0,0,0,2.6592833835861 +"1599.98254394531",0,0,0,2.80134601763103,0,0,0,0,0 +"1600.24523925781",0,0,0,0,0,0,0,0,0 +"1600.55578613281",0,0,0,0,0,0,0,0,0 +"1600.62744140625",0,0,0,0,0,0,0,0,0 +"1600.9140625",0,0,0,0,0,0,0,0,0 +"1601.17687988281",0,0,0,0,0,0,0,0,0 +"1601.29626464844",0,0,0,0,0,0,0,0,0 +"1602.03698730469",0,0,0,0,0,0,0,0,0 +"1602.18041992188",0,0,0,0,3.49359126444039,0,0,0,0 +"1602.63452148438",0,2.37999115486246,0,0,0,0,0,0,0 +"1602.73010253906",0,0,0,0,0,0,0,0,3.19501183725155 +"1602.99304199219",2.13447146432394,0,0,2.55522765278151,0,0,0,0,0 +"1603.27990722656",0,0,0,0,0,0,0,0,0 +"1603.61462402344",0,2.29585773250799,0,0,0,0,0,0,0 +"1603.94934082031",0,0,0,0,0,0,0,0,0 +"1604.140625",0,2.37999115486246,0,2.62611865236124,0,2.82666036127825,0,0,0 +"1604.45153808594",0,0,0,2.60094053971269,0,0,0,0,0 +"1604.81018066406",0,0,0,0,0,0,0,0,0 +"1604.90588378906",0,0,0,0,0,0,0,0,0 +"1605.09729003906",0,0,0,0,0,0,0,0,0 +"1605.4560546875",0,0,0,0,0,0,0,0,0 +"1605.57568359375",0,0,0,0,0,0,7.72836637750139,0,0 +"1605.91064453125",0,0,0,0,0,0,0,0,0 +"1606.00634765625",0,0,0,0,0,0,0,0,0 +"1606.24560546875",0,1.9754771657809,0,0,0,0,0,0,0 +"1606.81994628906",0,0,0,0,3.77559414340875,0,0,0,3.79397478765934 +"1607.34643554688",0,0,0,0,0,0,0,0,0 +"1607.58581542969",0,0,0,0,0,0,0,0,0 +"1608.06457519531",0,0,0,0,0,0,0,0,0 +"1608.25610351562",0,0,3.70243427295615,0,3.29483523952876,0,0,0,0 +"1608.66320800781",0,0,0,0,3.45389942636125,0,0,0,0 +"1608.95056152344",0,0,0,0,0,0,0,3.98813487256719,0 +"1609.0224609375",0,0,0,0,0,0,0,0,0 +"1609.38171386719",0,0,0,0,0,0,0,0,4.16040212854341 +"1609.71704101562",0,0,0,0,0,0,0,0,0 +"1609.95654296875",0,0,0,0,3.9489359788298,0,0,0,0 +"1610.2919921875",0,0,0,0,0,0,0,0,0 +"1610.48364257812",0,0,0,0,0,0,0,0,0 +"1610.81909179688",0,0,0,0,0,0,0,0,0 +"1611.20251464844",0,0,0,0,0,0,0,0,4.05549874134631 +"1611.46606445312",0,0,0,0,4.11991515595162,0,0,0,0 +"1611.75378417969",0,0,0,0,0,0,0,0,3.91083409196244 +"1612.01733398438",0,0,6.44504951849329,0,0,0,0,0,0 +"1612.25708007812",0,0,0,2.60094053971269,3.88487555837479,0,0,0,0 +"1612.40100097656",0,0,0,0,0,0,0,0,0 +"1612.54479980469",0,0,0,0,0,0,0,0,3.84889743217636 +"1612.90441894531",2.60677414384481,0,0,0,0,0,0,0,2.90757039651128 +"1613.40795898438",0,0,0,0,3.40638174493266,0,0,0,3.81861125105686 +"1613.91162109375",0,0,0,0,0,0,0,0,0 +"1614.19946289062",0,0,0,0,0,0,0,0,0 +"1614.43933105469",0,0,2.98634629381487,0,3.38202896079664,3.08927643330314,0,0,3.0768546959922 +"1614.87121582031",0,0,0,0,0,0,0,0,0 +"1615.13513183594",0,0,3.78204164605986,0,0,0,0,0,0 +"1615.42309570312",0,0,0,0,0,0,0,0,4.21152928676497 +"1615.68701171875",0,0,0,0,0,0,0,0,0 +"1615.92700195312",1.66106069846484,0,0,0,0,0,0,0,0 +"1616.1669921875",0,0,0,0,0,0,0,0,0 +"1616.26306152344",0,0,0,0,0,0,0,0,0 +"1616.52709960938",0,2.01172878156566,0,3.6438082793824,0,0,0,0,0 +"1616.98315429688",0,0,0,0,0,0,0,0,0 +"1617.22326660156",0,0,3.40380779416645,0,0,0,0,4.11200863591213,3.4059818404877 +"1617.607421875",0,0,0,0,0,0,7.73520911804434,0,0 +"1617.96765136719",0,0,0,3.21897201214104,0,0,0,0,3.4059818404877 +"1618.30383300781",2.10293681278534,0,0,0,0,0,0,0,0 +"1618.76025390625",0,0,0,0,0,2.92354020918754,0,0,0 +"1619.04858398438",0,0,0,0,0,0,0,0,0 +"1619.26477050781",0,0,0,0,0,0,0,0,0 +"1619.67321777344",0,0,0,0,0,0,0,0,0 +"1619.98559570312",1.64746889747799,0,0,0,0,0,0,0,0 +"1620.24987792969",0,0,0,0,3.83501101688682,0,0,0,0 +"1620.75463867188",0,0,0,3.84312483639915,0,0,0,0,0 +"1620.87475585938",0,0,0,3.49375902676115,3.82255742480028,0,0,0,4.19829234600318 +"1621.25939941406",0,0,0,0,0,0,0,0,0 +"1621.5478515625",0,0,0,0,0,0,0,0,0 +"1621.69213867188",0,0,0,0,0,0,0,0,0 +"1621.81237792969",0,0,0,0,0,0,0,0,0 +"1621.95666503906",0,0,0,2.55522765278151,0,0,0,0,0 +"1622.26916503906",0,0,0,0,5.69962873448487,0,0,0,0 +"1622.58190917969",0,2.329895238006,0,0,0,0,0,0,0 +"1622.91857910156",0,2.75981967903018,0,0,0,0,0,0,0 +"1623.18310546875",0,0,4.23438152099839,0,0,0,0,0,0 +"1623.78454589844",0,0,0,2.92256130233671,0,0,0,4.29930672483695,0 +"1624.31384277344",0,0,2.7069060375977,0,0,0,0,0,0 +"1624.55444335938",0,0,0,0,0,0,0,0,0 +"1624.79516601562",0,0,0,0,0,0,0,0,0 +"1624.98767089844",0,0,0,0,0,0,0,0,0 +"1625.05993652344",0,0,0,0,0,0,0,0,0 +"1625.30053710938",0,0,4.53934018319918,0,0,0,0,0,0 +"1625.61352539062",0,0,0,0,0,0,0,0,0 +"1625.78198242188",0,0,0,3.86935992977814,0,0,0,0,0 +"1626.04675292969",1.82525922578732,0,0,0,0,0,0,0,0 +"1626.31164550781",0,0,0,0,0,0,0,0,0 +"1626.57653808594",1.72793106427641,0,0,2.81822493664666,0,2.851475753594,0,0,0 +"1627.03405761719",0,0,0,0,0,0,0,0,0 +"1627.17858886719",0,0,0,0,0,0,0,0,0 +"1627.29895019531",0,1.99963979773436,0,0,0,0,0,0,0 +"1627.66027832031",0,0,4.71060250517617,3.61866210690499,0,0,0,0,0 +"1628.14196777344",0,2.65204645768264,0,2.82649219010843,0,0,0,0,0 +"1628.47924804688",0,0,0,0,0,0,0,0,0 +"1629.10571289062",0,0,0,0,0,0,0,0,0 +"1629.46728515625",0,0,0,2.43401236807582,0,0,0,0,2.72803298993612 +"1629.8046875",0,0,0,0,0,0,0,0,0 +"1629.92517089844",0,0,0,2.94770747481412,0,0,0,0,0 +"1630.60021972656",0,0,0,0,0,0,0,0,0 +"1630.720703125",0,0,0,0,0,0,0,0,0 +"1630.86535644531",0,0,0,2.67644293748719,0,0,0,0,0 +"1631.17883300781",0,3.1764073162339,0,0,0,0,0,0,0 +"1631.61291503906",0,2.77189332715234,0,3.12293484008391,0,0,0,0,4.70751329154412 +"1631.87817382812",0,0,0,0,0,0,0,0,0 +"1631.99877929688",0,0,0,0,0,0,0,0,2.62253958166782 +"1632.16760253906",0,0,0,2.4257131744429,0,0,0,0,0 +"1632.50537109375",0,0,0,2.60094053971269,0,0,0,0,0 +"1632.77062988281",0,0,0,0,0,0,0,0,0 +"1633.08435058594",1.79731858168213,2.80645366561072,0,2.40165592286708,0,0,0,0,0 +"1633.34973144531",0,0,0,0,0,0,0,0,0 +"1633.59106445312",0,2.80645366561072,0,0,0,0,0,0,0 +"1633.8564453125",0,0,0,0,0,0,0,0,0 +"1634.31506347656",0,2.19965066203138,0,0,0,0,0,0,0 +"1634.67712402344",0,3.04447146293289,0,2.40165592286708,0,0,0,0,0 +"1635.1357421875",0,0,0,0,0,0,0,0,0 +"1635.42541503906",0,0,0,0,0,0,0,0,0 +"1635.76354980469",0,0,0,0,0,0,0,0,0 +"1635.93249511719",0,0,0,0,0,0,0,0,0 +"1636.24645996094",0,0,0,4.4611563088275,0,0,0,0,0 +"1636.34313964844",0,0,0,0,0,0,0,0,0 +"1636.65710449219",0,0,0,0,3.42954664222523,0,0,0,0 +"1637.30932617188",0,2.52232471466839,0,2.33076492328735,0,0,0,0,0 +"1637.744140625",0,1.9754771657809,0,0,0,3.95039895158882,0,0,0 +"1638.10656738281",0,0,0,0,0,0,0,0,0 +"1638.42077636719",0,0,0,0,3.13629385625363,0,0,0,0 +"1638.66247558594",0,0,0,3.12293484008391,0,0,0,0,0 +"1639.12170410156",1.65221929867647,0,0,0,0,0,0,0,0 +"1639.67761230469",0,0,0,0,0,0,0,0,0 +"1639.94360351562",0,0,0,0,0,0,0,0,4.82624364057421 +"1640.01611328125",0,0,0,2.4257131744429,0,0,0,0,0 +"1640.52392578125",0,2.37999115486246,0,2.72215582441838,0,0,0,0,3.31374218628165 +"1641.20104980469",0,0,0,0,6.5829218393025,0,0,0,4.13505784926084 +"1641.63647460938",0,0,0,0,0,0,0,0,0 +"1642.19287109375",0,0,0,0,0,0,0,0,0 +"1642.50744628906",0,0,0,0,0,0,0,0,0 +"1642.62841796875",0,0,0,0,0,0,0,0,0 +"1642.72521972656",0,2.52180188170801,0,0,0,3.07142672180877,0,0,0 +"1643.015625",0,0,0,0,0,0,0,0,0 +"1643.16076660156",0,2.79657879206617,4.42402360215603,0,0,0,0,0,0 +"1643.40283203125",0,0,0,0,0,0,0,0,0 +"1643.66906738281",0,2.03367730323236,0,2.50490336765556,0,0,0,0,0 +"1644.00793457031",0,0,0,0,0,0,0,0,0 +"1644.27429199219",0,2.06771480873037,0,0,0,0,0,0,0 +"1644.37109375",0,0,0,3.46861285428375,0,0,0,0,0 +"1644.73425292969",0,1.9754771657809,0,3.19273691876206,0,0,0,0,0 +"1645.12170410156",0,3.02252294126619,0,0,0,0,0,0,0 +"1645.60607910156",0,0,0,0,0,0,0,0,0 +"1645.96936035156",0,2.06771480873037,0,0,0,0,0,0,0 +"1646.26000976562",0,2.04576628706367,0,0,0,0,0,0,0 +"1646.69604492188",0,0,0,0,0,0,0,0,0 +"1646.81726074219",0,0,0,0,0,0,0,0,0 +"1646.96264648438",0,0,0,0,0,0,0,0,0 +"1647.35034179688",0,0,0,0,3.13683245805084,0,0,0,0 +"1648.1015625",2.77002198708469,0,0,0,0,0,0,0,2.92517603133927 +"1648.63488769531",1.88641643858643,0,0,0,0,0,0,0,3.30106163999014 +"1648.92578125",2.30383181220986,0,0,0,0,0,0,0,0 +"1649.337890625",0,0,0,2.55522765278151,0,0,0,0,0 +"1649.60473632812",0,0,0,2.40165592286708,0,0,0,0,0 +"1649.87145996094",0,0,5.40750426174492,0,0,0,0,0,0 +"1650.16247558594",0,0,0,0,0,0,0,0,3.88677083633567 +"1650.59899902344",0,0,0,0,0,3.51049701515928,0,0,0 +"1651.20544433594",0,0,3.36541097906077,0,0,0,0,0,0 +"1651.423828125",0,0,0,0,0,0,0,0,3.9284565400909 +"1651.7392578125",0,0,0,0,0,0,0,0,0 +"1652.07897949219",0,0,0,0,0,0,0,0,0 +"1652.15173339844",0,0,0,0,0,0,0,0,0 +"1652.37023925781",0,0,0,2.94770747481412,0,0,0,0,0 +"1652.66149902344",0,0,0,0,0,0,0,0,0 +"1652.78283691406",1.70346428971365,0,0,3.22618228487238,0,0,0,0,0 +"1653.36535644531",0,0,0,0,0,0,0,0,0 +"1653.43823242188",0,0,0,0,0,0,0,0,0 +"1653.75378417969",0,2.35353503699908,0,0,0,0,0,0,0 +"1654.16662597656",0,0,0,0,0,0,0,0,0 +"1654.67651367188",0,0,0,0,0,0,0,0,0 +"1654.77368164062",0,0,0,0,0,0,0,0,0 +"1655.18664550781",0,0,0,0,0,0,0,0,0 +"1655.35668945312",0,0,0,0,5.36601902714804,0,0,0,0 +"1655.62390136719",1.66262851159488,2.05783993518582,0,0,0,2.9761390643002,0,0,0 +"1656.30419921875",0,0,0,2.80134601763103,0,0,0,0,0 +"1656.79016113281",1.73656675438229,0,0,0,0,0,0,0,0 +"1657.033203125",0,2.71421602266125,0,0,0,0,0,0,0 +"1657.251953125",0,0,6.66104083898704,0,0,0,0,0,0 +"1657.54357910156",2.41017585269264,0,0,2.33076492328735,0,0,0,0,0 +"1657.88391113281",0,0,0,0,0,0,0,0,5.48012923549902 +"1658.22424316406",0,0,0,0,0,0,0,0,0 +"1658.46740722656",0,0,0,0,0,0,0,0,0 +"1658.78344726562",0,0,0,0,0,3.38129185711144,0,0,0 +"1658.90502929688",0,0,0,0,0,0,0,0,0 +"1659.02661132812",0,0,0,0,0,0,0,0,0 +"1659.29418945312",1.83042104635077,0,4.33236865328276,0,0,0,0,0,0 +"1659.68322753906",0,0,0,0,0,0,0,0,0 +"1659.80493164062",1.99412861638246,0,0,3.12184591918233,0,0,0,0,0 +"1660.02380371094",0,0,2.72611663013084,0,0,0,0,0,0 +"1660.43737792969",0,0,0,0,0,0,0,0,0 +"1660.51037597656",0,0,0,0,0,0,0,0,0 +"1660.6806640625",0,0,0,0,0,0,0,0,0 +"1660.75366210938",0,0,0,0,0,0,0,0,0 +"1660.82666015625",0,2.30625543901292,0,0,0,0,0,0,0 +"1660.92395019531",0,0,0,0,0,0,0,0,0 +"1661.36193847656",0,2.85654958246718,0,0,0,0,0,0,0 +"1661.82434082031",0,0,0,0,0,4.04647085500485,0,0,0 +"1662.11645507812",0,0,0,0,0,0,0,0,0 +"1662.31115722656",0,0,0,0,0,0,0,0,0 +"1662.45727539062",0,0,0,0,0,0,0,0,0 +"1662.65197753906",0,0,0,0,0,0,0,0,0 +"1662.99279785156",0,0,0,0,0,0,0,0,0 +"1663.30932617188",0,2.14197335754029,0,0,0,3.73044798337405,0,0,4.51416573643642 +"1663.86938476562",0,0,0,3.25132845734979,3.2722089440334,0,0,0,0 +"1664.13732910156",1.96667892956805,3.95958138511718,0,0,0,0,0,0,0 +"1664.62451171875",0,0,0,2.72215582441838,0,0,0,0,0 +"1665.11169433594",0,0,0,0,0,0,0,0,2.94729803209712 +"1665.35534667969",0,2.09187744068383,0,0,0,0,0,0,3.4192187812495 +"1665.67211914062",0,0,0,0,0,0,0,0,0 +"1665.91577148438",0,0,2.93308816004727,0,0,0,0,0,0 +"1666.28125",0,0,0,0,0,0,0,0,0 +"1666.52502441406",0,0,0,0,0,0,0,0,0 +"1667.01257324219",0,0,0,0,0,0,0,0,0 +"1667.35375976562",0,0,4.93678462762574,0,0,0,0,0,0 +"1667.74389648438",0,2.23818042801691,0,0,0,0,0,0,0 +"1668.18273925781",0,0,0,0,0,0,0,0,0 +"1668.62170410156",0,0,0,0,0,0,0,0,0 +"1668.98754882812",0,0,0,0,0,0,0,0,3.26318823583083 +"1669.353515625",0,2.18756167820007,0,0,0,0,0,0,0 +"1669.93896484375",0,2.18756167820007,0,2.67644293748719,0,0,0,0,0 +"1670.47583007812",0,0,0,0,0,0,0,0,0 +"1670.9150390625",0,0,0,0,0,0,0,0,0 +"1671.28112792969",0,0,0,0,0,4.04647085500485,0,0,0 +"1671.64721679688",0,0,0,0,0,0,0,0,0 +"1671.86694335938",0,0,0,0,3.49359126444039,0,0,0,0 +"1672.15991210938",0,0,0,0,0,0,0,0,0 +"1672.57495117188",1.92882606370093,0,0,3.21897201214104,0,0,0,0,0 +"1673.234375",0,0,0,2.84337110912406,0,0,0,0,0 +"1673.74719238281",0,0,0,0,0,0,0,0,0 +"1674.13806152344",0,0,0,0,3.6622895528845,0,0,0,0 +"1674.33349609375",0,0,0,0,0,0,0,0,0 +"1675.0419921875",0,0,0,0,0,0,0,0,0 +"1675.35974121094",0,0,0,0,0,0,0,0,3.8097261910608 +"1675.65295410156",2.36437792982722,0,0,0,0,0,0,0,0 +"1676.09289550781",0,0,0,0,0,0,0,0,0 +"1676.19067382812",0,0,4.53934018319918,2.65126482483864,0,0,0,0,0 +"1676.63073730469",0,4.91440485336215,0,2.62611865236124,0,0,0,0,3.7048228038637 +"1677.19299316406",0,0,0,0,0,0,0,0,0 +"1677.53527832031",0,0,0,0,0,0,0,0,0 +"1677.73095703125",0,0,0,0,0,0,0,0,0 +"1678.0244140625",0,0,0,0,0,0,0,0,0 +"1678.31787109375",0,0,0,2.37650975038968,5.73523142562413,0,0,0,0 +"1678.73376464844",0,0,0,0,0,4.71084190840502,0,0,0 +"1679.29638671875",0,3.83332157237885,0,0,0,0,0,0,0 +"1679.71240234375",0,0,0,0,0,0,0,0,3.49385280062755 +"1679.9326171875",0,0,0,0,0,0,0,0,0 +"1680.27526855469",0,0,0,0,0,0,0,0,0 +"1680.47094726562",0,0,0,0,0,0,0,0,0 +"1680.59338378906",0,0,0,0,0,0,0,0,0 +"1681.107421875",0,0,0,0,3.13683245805084,2.92273226469429,0,0,0 +"1681.57250976562",0,0,0,0,0,0,0,0,0 +"1681.89086914062",1.83021533666829,0,0,0,3.885414160172,0,0,0,0 +"1682.33154296875",0,0,0,0,0,0,0,0,0 +"1682.7724609375",0,0,0,0,0,0,0,0,0 +"1683.13977050781",0,0,0,2.53004954013296,0,0,0,0,0 +"1683.43371582031",0,0,0,0,0,0,0,0,0 +"1683.6787109375",0,2.16392187920699,0,3.12184591918233,0,0,0,0,0 +"1684.04626464844",0,0,0,3.4434347416352,0,0,0,0,0 +"1684.29125976562",0,0,0,3.4434347416352,0,0,0,0,0 +"1684.53625488281",0,0,0,0,0,0,0,0,0 +"1684.63427734375",0,2.47619822533908,0,0,0,0,0,0,0 +"1684.78125",0,0,0,0,0,0,0,0,0 +"1684.92834472656",0,0,0,3.4434347416352,0,0,0,0,0 +"1685.34497070312",0,0,0,3.4434347416352,0,0,0,0,0 +"1685.59008789062",0,0,0,0,0,0,0,0,0 +"1685.93334960938",0,0,0,0,0,0,0,0,0 +"1686.27648925781",0,0,0,0,0,0,0,0,0 +"1686.44812011719",0,0,0,0,0,0,0,0,0 +"1686.9384765625",0,2.51023573083709,0,0,0,0,0,0,0 +"1687.38000488281",0,0,0,0,0,0,0,0,0 +"1687.74780273438",0,0,0,0,0,0,0,0,0 +"1688.09130859375",1.9106775034667,0,0,3.02689766802677,0,0,0,0,0 +"1688.68005371094",0,0,0,0,0,0,0,0,0 +"1688.75366210938",0,0,0,0,0,0,0,0,0 +"1688.94995117188",0,0,0,3.02689766802677,0,0,0,0,0 +"1689.14624023438",0,0,0,0,0,0,0,0,0 +"1689.21984863281",0,0,0,0,0,0,0,0,0 +"1689.41613769531",0,0,0,0,0,0,0,0,0 +"1689.51428222656",0,0,0,0,0,0,0,0,0 +"1689.83337402344",2.07827036240579,0,0,0,0,0,0,0,0 +"1690.39782714844",0,0,0,2.65956401847157,0,0,0,0,3.64988334604621 +"1690.74157714844",0,0,0,0,0,0,0,0,0 +"1690.91345214844",0,0,0,0,0,0,0,0,0 +"1691.2080078125",0,0,0,0,0,0,0,0,0 +"1691.52722167969",0,0,0,3.05204384050417,0,0,0,0,0 +"1692.11657714844",0,0,0,0,0,0,0,0,3.95057854084875 +"1692.46044921875",1.65201358899399,0,0,0,0,0,0,0,0 +"1692.85339355469",0,0,0,0,0,0,0,0,0 +"1692.92712402344",0,0,0,0,0,0,0,0,0 +"1693.04992675781",0,0,0,0,0,0,0,0,0 +"1693.24645996094",0,0,0,0,0,0,0,0,0 +"1693.61499023438",0,0,0,0,0,0,0,0,0 +"1693.88537597656",0,0,0,2.67644293748719,0,0,0,0,0 +"1694.08190917969",0,0,0,0,0,0,0,0,0 +"1694.47509765625",0,0,0,0,0,0,0,0,0 +"1694.72082519531",0,4.22176181439281,0,0,0,0,0,0,2.87082659459299 +"1694.91748046875",0,0,0,2.80134601763103,0,0,0,0,0 +"1694.9912109375",0,0,0,2.50490336765556,0,0,0,0,0 +"1695.33544921875",0,0,0,3.12184591918233,0,0,0,0,0 +"1695.4091796875",0,0,0,3.22618228487238,0,0,0,0,0 +"1695.77795410156",0,0,0,0,0,0,0,0,0 +"1696.04833984375",1.7320160290006,0,0,3.48917956873753,0,0,0,0,0 +"1696.58935546875",0,0,0,0,0,0,0,0,0 +"1696.95825195312",0,0,0,0,0,0,0,0,0 +"1697.056640625",0,0,0,0,0,0,0,0,0 +"1697.20422363281",0,0,0,3.51432574121494,0,0,0,0,0 +"1697.64697265625",0,0,0,2.50490336765556,0,0,0,0,0 +"1697.966796875",0,0,0,2.40165592286708,0,0,0,0,0 +"1698.33581542969",0,0,0,0,0,0,0,0,0 +"1698.80334472656",0,0,0,0,0,0,0,0,0 +"1699.4677734375",0,0,0,0,0,0,0,0,0 +"1700.10778808594",0,0,0,0,0,0,0,0,0 +"1700.181640625",0,0,0,0,0,0,0,0,0 +"1700.60021972656",0,0,0,0,0,0,0,0,0 +"1700.92028808594",0,0,0,0,0,0,0,0,0 +"1701.01879882812",0,0,0,0,3.4104866901124,0,0,0,0 +"1701.43737792969",0,0,0,0,0,3.36182625663057,0,0,0 +"1701.75756835938",0,0,0,2.72215582441838,0,0,0,4.26674295912891,0 +"1702.447265625",0,0,0,0,0,0,0,0,0 +"1702.59509277344",0,0,4.30765671069102,0,0,0,0,0,0 +"1702.71826171875",0,0,0,2.62611865236124,0,0,0,0,0 +"1702.9892578125",0,0,0,0,0,0,0,0,0 +"1703.45739746094",0,0,0,0,0,0,0,0,0 +"1703.75305175781",0,0,0,3.4434347416352,0,0,0,0,0 +"1704.048828125",0,0,0,0,0,0,0,0,0 +"1704.31994628906",0,0,0,0,0,0,0,0,0 +"1704.39392089844",0,0,0,0,0,0,0,0,0 +"1704.49243164062",0,0,0,0,0,0,0,0,0 +"1704.88684082031",0,0,0,0,0,0,0,0,0 +"1705.03479003906",1.65221929867647,0,0,0,0,0,0,0,0 +"1705.47863769531",0,0,0,0,0,0,0,0,0 +"1705.89782714844",0,0,0,0,0,0,0,0,2.59604888684377 +"1706.24304199219",0,0,0,0,0,0,0,0,0 +"1706.51428222656",0,0,0,0,0,0,0,0,0 +"1707.00756835938",0,0,6.01272669947978,0,0,0,0,0,0 +"1707.57495117188",0,0,0,0,0,0,0,0,0 +"1707.84643554688",0,0,0,0,0,0,0,0,7.60484739426162 +"1708.14245605469",0,0,0,0,0,0,0,0,0 +"1708.36462402344",0,0,0,2.32967600238577,0,0,0,0,0 +"1708.66076660156",2.27528007292292,0,0,0,0,0,0,0,0 +"1709.12963867188",0,0,0,0,0,0,0,0,0 +"1709.40112304688",0,0,0,0,0,3.29135399143776,0,0,0 +"1709.771484375",0,0,0,0,0,0,0,0,0 +"1710.46276855469",0,0,4.45973281009547,0,0,0,0,0,0 +"1710.734375",0,0,0,0,0,0,0,0,0 +"1710.9072265625",0,0,0,0,0,0,0,0,0 +"1710.98132324219",2.04945857214383,0,4.45973281009547,0,0,0,0,0,0 +"1711.45056152344",0,0,0,0,0,0,0,0,0 +"1711.72229003906",0,2.29585773250799,3.61077932408287,0,0,0,0,0,0 +"1712.0927734375",0,0,0,2.53004954013296,0,0,0,0,0 +"1712.38928222656",0,0,0,0,0,0,0,0,0 +"1712.63635253906",0,0,0,3.84421375730073,0,0,0,0,0 +"1713.03173828125",0,0,0,0,0,0,0,0,0 +"1713.22937011719",0,0,0,0,0,0,0,0,0 +"1713.62487792969",0,0,0,0,0,0,0,0,0 +"1713.94616699219",0,0,8.70044651450495,0,0,0,0,0,2.74069672292717 +"1714.68774414062",0,0,0,0,0,0,0,0,0 +"1714.984375",0,0,8.71166325692203,0,0,0,0,0,0 +"1715.20690917969",0,0,0,0,0,0,0,0,0 +"1715.50366210938",0,0,3.61077932408287,0,3.90976694430801,0,0,0,4.01632750023075 +"1716.09716796875",0,0,0,0,0,0,0,0,0 +"1716.36926269531",0,4.55998678113705,9.56227840963959,0,0,0,0,0,0 +"1716.93823242188",0,0,0,0,0,0,0,0,0 +"1717.11145019531",0,0,0,0,0,0,0,0,0 +"1717.40832519531",0,0,0,0,0,0,0,0,0 +"1717.65576171875",0,0,0,2.33076492328735,0,0,0,0,0 +"1717.90319824219",0,2.03367730323236,4.2335506876459,0,0,0,0,0,0 +"1718.2001953125",0,0,3.47708298385907,2.4005670019655,0,0,0,0,0 +"1718.57141113281",0,2.12988437370898,0,0,0,0,0,0,3.31374218628165 +"1719.01696777344",0,0,5.56038682454126,0,0,3.01267013036797,0,0,2.853220959765 +"1719.43774414062",0,0,0,3.24306120388801,0,0,0,0,0 +"1719.66052246094",0,0,0,0,0,0,0,0,0 +"1719.95764160156",0,0,0,0,0,0,0,0,0 +"1720.03198242188",0,0,0,0,0,0,0,0,0 +"1720.45288085938",0,0,0,3.61866210690499,0,0,0,0,0 +"1720.79968261719",0,0,0,0,0,0,0,0,0 +"1721.31982421875",2.31611585104169,2.22558394693437,0,2.55522765278151,3.99643786201854,3.36263420112382,0,0,0 +"1721.79040527344",0,0,0,0,0,0,0,0,0 +"1722.08776855469",0,0,0,0,0,0,0,0,0 +"1722.33557128906",0,2.94878722541665,0,2.52178228667118,3.92168193459735,0,0,0,0 +"1722.60815429688",0,2.77241616011272,0,2.60094053971269,0,0,0,0,3.3004884322194 +"1723.10375976562",0,0,0,0,0,0,0,0,0 +"1723.3515625",0,0,0,0,0,0,0,0,0 +"1723.62426757812",0,0,0,0,0,0,0,0,0 +"1723.99609375",0,0,0,0,0,0,0,0,0 +"1724.26867675781",0,2.05783993518582,0,0,0,0,0,0,0 +"1724.640625",0,0,0,2.33076492328735,4.69341273577122,0,0,0,0 +"1725.06213378906",0,0,0,0,3.39448255288318,0,0,0,0 +"1725.43408203125",0,0,4.36724702786971,0,0,0,0,0,0 +"1725.60778808594",0,0,0,0,0,0,0,0,0 +"1725.73168945312",0,0,0,0,3.28292024923943,0,0,0,0 +"1725.88061523438",0,0,0,0,0,0,0,0,0 +"1726.02941894531",0,0,0,0,0,0,0,0,0 +"1726.67431640625",0,0,0,0,6.4328713826629,0,0,0,0 +"1727.0712890625",0,0,2.83429456437102,0,0,0,0,0,0 +"1727.41870117188",2.16647187652003,0,0,0,0,0,0,0,0 +"1727.84057617188",0,0,0,0,0,0,0,0,0 +"1728.11352539062",0,0,0,0,0,0,0,0,0 +"1728.23767089844",0,0,0,0,0,0,0,0,0 +"1728.36181640625",0,3.10214876742398,0,0,0,0,0,0,0 +"1728.65966796875",0,0,0,0,0,0,0,0,0 +"1728.80859375",0,0,0,2.40165592286708,0,0,0,0,0 +"1728.98229980469",0,2.18756167820007,0,0,0,0,0,0,0 +"1729.15612792969",0,0,0,0,0,3.01267013036797,0,0,0 +"1729.52856445312",0,0,0,0,3.18790068462211,0,0,0,0 +"1730.07482910156",0,0,0,0,0,0,0,0,0 +"1730.24865722656",0,0,2.76099500471779,0,0,0,0,0,0 +"1730.69567871094",0,2.43766845935355,0,0,0,0,0,0,0 +"1731.21740722656",1.66262851159488,0,0,0,0,0,0,0,0 +"1731.54028320312",0,0,0,0,0,0,0,0,0 +"1731.86328125",0,2.22159918369808,0,0,0,0,0,0,3.01304699147912 +"1732.43481445312",0,0,0,0,0,0,0,0,0 +"1732.5341796875",0,0,0,0,0,0,0,0,3.71805974462549 +"1732.93188476562",0,3.92503638236795,0,0,0,0,0,0,0 +"1733.3046875",0,0,0,0,0,0,0,0,4.0428181950548 +"1733.82666015625",0,0,0,0,0,0,0,0,0 +"1733.97583007812",0,0,0,0,0,0,0,0,0 +"1734.42346191406",0,0,0,0,0,0,0,0,3.02630074554138 +"1734.92077636719",2.00730899800435,0,0,0,0,0,0,0,0 +"1735.24401855469",1.86195569788937,0,2.76099500471779,0,0,0,0,0,0 +"1735.64196777344",0,0,0,0,0,0,0,0,0 +"1735.84094238281",2.42037935592857,0,0,2.84337110912406,0,0,0,0,4.44656254562789 +"1736.18920898438",1.94676288038699,0,0,0,0,0,0,0,0 +"1736.91076660156",0,0,0,0,0,0,0,0,0 +"1737.15954589844",0,0,8.6016285488681,0,0,0,0,0,0 +"1737.58264160156",0,0,0,0,0,0,0,0,0 +"1737.98083496094",0,0,0,0,0,0,0,0,0 +"1738.05554199219",0,0,0,3.37254374205547,0,0,0,0,0 +"1738.50354003906",0,0,0,0,0,0,0,0,0 +"1738.62805175781",0,0,0,0,0,0,0,0,0 +"1738.9267578125",0,0,0,0,0,0,0,0,0 +"1739.35009765625",0,0,0,2.33076492328735,0,0,0,0,0 +"1739.79833984375",0,0,0,0,0,0,0,0,0 +"1739.89794921875",0,0,0,0,0,0,0,0,0 +"1740.171875",0,0,0,0,0,0,0,0,0 +"1740.44580078125",0,0,0,0,0,0,0,0,0 +"1740.59533691406",0,0,0,0,0,0,0,0,0 +"1740.69494628906",0,0,0,0,0,0,0,0,0 +"1741.01879882812",0,0,0,3.02689766802677,0,0,0,0,0 +"1741.44226074219",0,0,0,0,0,0,0,0,0 +"1741.94067382812",0,0,0,0,0,0,0,0,0 +"1742.23962402344",0,0,0,0,0,0,0,0,0 +"1742.81286621094",0,0,0,0,0,0,0,0,0 +"1743.06213378906",0,0,0,0,0,0,0,0,0 +"1743.16186523438",0,0,0,0,0,0,0,0,0 +"1743.33630371094",0,0,0,0,0,0,0,0,0 +"1743.884765625",0,0,0,0,0,0,0,0,0 +"1743.98449707031",0,0,0,0,0,0,0,0,0 +"1744.15905761719",0,0,0,0,0,0,0,0,0 +"1744.5830078125",0,0,0,0,0,0,0,0,0 +"1744.85729980469",0,0,0,3.34739756957807,0,0,0,0,2.68577407841015 +"1745.13159179688",0,0,0,0,0,0,0,0,0 +"1745.45593261719",0,0,0,0,0,0,0,0,0 +"1745.5556640625",0,0,0,0,0,0,0,0,0 +"1745.78015136719",0,0,0,0,0,0,0,0,0 +"1746.05456542969",0,0,0,0,0,0,0,0,0 +"1746.55358886719",0,5.44810241678843,0,3.05095491960259,0,0,0,0,0 +"1746.92785644531",2.04082288203795,0,0,0,0,0,0,0,0 +"1747.22729492188",0,0,0,0,0,0,0,0,0 +"1747.35205078125",0,0,0,0,0,0,0,0,0 +"1747.50183105469",0,5.72068055256899,0,2.74733393706692,0,0,0,0,0 +"1747.951171875",2.36437792982722,6.28189523548856,0,2.60094053971269,0,0,0,0,0 +"1748.75",0,2.37999115486246,0,0,0,0,0,0,0 +"1749.07458496094",0,0,0,0,0,0,0,0,0 +"1749.24938964844",0,3.47145680664154,0,0,0,0,0,0,0 +"1749.37426757812",0,0,0,0,0,0,0,0,0 +"1749.4990234375",0,0,0,0,0,0,0,0,0 +"1749.62390136719",0,2.27169510055454,0,0,0,0,0,0,0 +"1750.02355957031",0,0,0,0,0,0,0,0,3.03953768630317 +"1750.72290039062",2.5172165601487,0,0,0,0,0,0,0,0 +"1750.99768066406",0,0,0,0,0,4.26561387872637,0,0,0 +"1751.32250976562",0,0,3.03105092237103,0,0,0,0,0,0 +"1751.57238769531",0,1.9754771657809,0,2.53004954013296,4.89163015888565,0,0,0,3.02630074554138 +"1752.02221679688",0,2.02158831940106,0,0,0,0,0,0,0 +"1752.34704589844",0,0,0,0,4.26598714890036,0,0,0,0 +"1752.59704589844",0,0,0,0,4.03150195136059,0,0,0,0 +"1752.87194824219",0,0,0,0,0,0,0,0,0 +"1753.07189941406",0,0,0,3.94025092935787,3.62313631660256,0,0,0,0 +"1753.57189941406",0,0,0,0,0,0,0,0,0 +"1753.77197265625",0,0,0,0,3.93291604336073,0,0,0,0 +"1753.94702148438",1.78801745510195,0,0,0,0,0,0,0,0 +"1754.09704589844",0,0,0,0,0,0,0,0,0 +"1754.22204589844",0,0,5.38912450256427,0,0,0,0,0,0 +"1754.67211914062",0,0,0,0,5.05069434571813,0,0,0,4.24181546788448 +"1755.04736328125",0,0,4.78470852822128,0,0,0,0,0,0 +"1755.62268066406",0,0,5.82144732157777,3.37254374205547,0,0,0,0,0 +"1756.32312011719",1.83517144754925,0,0,0,0,0,0,0,0 +"1756.59838867188",0,0,0,0,0,0,0,0,0 +"1756.67346191406",0,0,0,0,0,0,0,0,0 +"1757.12390136719",0,0,0,0,0,0,0,0,0 +"1757.19897460938",0,0,0,0,0,0,0,0,0 +"1757.34912109375",0,0,3.78204164605986,0,0,0,0,0,4.87679759102504 +"1757.59948730469",0,0,0,0,0,0,0,0,0 +"1757.67456054688",0,2.52232471466839,0,0,0,0,0,0,0 +"1758.2001953125",0,0,2.62729866449399,3.09666780653378,3.13683245805084,3.29135399143776,0,0,0 +"1758.67590332031",0,3.11423775125529,0,0,0,0,0,0,3.19501183725156 +"1759.20178222656",0,0,0,0,0,0,0,0,0 +"1759.32702636719",0,0,0,0,0,0,0,0,0 +"1759.50231933594",0,0,3.91573798628366,0,0,0,0,0,0 +"1759.75268554688",0,0,0,3.73987739161068,0,0,0,0,0 +"1760.3037109375",0,0,8.75453548162504,2.32967600238577,0,0,0,0,3.30106163999014 +"1760.955078125",0,0,0,2.4005670019655,0,0,0,0,0 +"1761.40612792969",0,2.53387552983017,11.2673483984284,0,0,0,0,0,0 +"1762.00756835938",0,0,0,0,0,0,0,0,0 +"1762.25817871094",0,0,0,2.50490336765556,0,0,0,0,0 +"1762.43359375",0,0,4.80308828740194,0,0,3.01267013036797,0,0,0 +"1762.93493652344",0,3.04447146293289,0,4.13956748637463,0,0,0,0,0 +"1763.21069335938",0,0,0,0,0,0,0,0,2.81590395007597 +"1763.56164550781",0,2.85654958246718,0,2.32967600238577,0,0,0,0,3.66313710010847 +"1764.01306152344",0,0,0,3.14699209165973,0,0,0,0,0 +"1764.18859863281",1.71230568950202,0,0,0,0,0,0,0,0 +"1764.43933105469",0,0,0,0,0,0,0,0,0 +"1764.79040527344",0,0,3.06045231685998,0,0,0,0,0,0 +"1765.26708984375",0,0,0,0,0,3.09008437779639,0,0,0 +"1765.51794433594",0,0,0,2.33076492328735,0,0,0,0,0 +"1765.79382324219",0,0,0,0,0,0,0,0,0 +"1766.09497070312",0,0,0,0,4.24944440987394,0,0,0,0 +"1766.47131347656",0,0,0,0,0,0,0,0,0 +"1766.82263183594",0,2.66464293876517,0,0,0,0,0,0,0 +"1767.12377929688",0,0,0,0,0,0,0,0,0 +"1767.45007324219",0,0,3.38459720163331,0,0,0,0,0,0 +"1767.65087890625",0,2.90266073608734,0,0,0,0,0,0,0 +"1767.92700195312",0,0,0,0,0,0,0,0,0 +"1768.42907714844",0,2.66413544151394,0,0,0,0,0,0,0 +"1768.60485839844",0,0,0,0,0,0,0,0,0 +"1768.88110351562",0,0,0,2.92256130233671,0,0,0,0,0 +"1769.33312988281",0,0,0,0,0,0,0,0,0 +"1769.609375",0,0,0,3.25132845734979,0,0,0,0,0 +"1769.86047363281",0,0,0,0,0,0,0,0,0 +"1770.13684082031",2.04991829893564,0,0,0,0,0,0,0,3.02628393224091 +"1770.46337890625",0,0,0,0,0,0,0,0,0 +"1770.76489257812",0,0,0,0,0,0,0,0,0 +"1771.01611328125",0,3.39078531456299,0,0,4.14304845676449,0,0,0,0 +"1771.26733398438",0,0,2.85348078694355,3.54777110732526,0,0,0,0,0 +"1771.64428710938",0,0,0,0,0,0,0,0,4.04224498728405 +"1771.94592285156",0,0,0,0,0,0,0,0,0 +"1772.02124023438",0,3.06466466735921,0,2.74733393706692,0,0,0,0,0 +"1772.49877929688",0,0,0,0,0,0,0,0,0 +"1772.82556152344",0,2.27221793351491,0,0,0,3.05274536723537,0,0,0 +"1773.02673339844",0,2.27221793351491,0,0,0,0,0,0,0 +"1773.50439453125",0,1.9495438808779,0,0,0,0,0,0,0 +"1774.20849609375",0,0,0,0,0,0,0,0,0 +"1774.33422851562",0,0,0,0,0,0,0,0,0 +"1774.48510742188",0,0,0,0,0,0,0,0,0 +"1774.61083984375",0,0,0,0,0,0,0,0,0 +"1774.93786621094",0,0,0,0,0,0,0,0,0 +"1775.2900390625",0,0,0,0,0,0,0,0,3.66313710010847 +"1775.44091796875",0,0,0,2.57210657179713,0,0,0,0,0 +"1776.06994628906",1.63816173703213,0,3.13922885661121,0,0,0,0,0,0 +"1776.52282714844",0,2.80645366561072,0,0,3.57972358035371,0,0,0,0 +"1776.79968261719",0,2.99836030931273,0,2.94770747481412,0,0,0,0,4.9817177915226 +"1776.97583007812",0,0,0,0,0,0,0,0,0 +"1777.10168457031",0,2.91422688695827,3.61077932408287,0,0,2.77406150616558,0,0,0 +"1777.30310058594",0,0,0,0,0,0,0,0,0 +"1777.4541015625",0,0,0,2.69700965194097,0,0,0,0,0 +"1777.57995605469",0,0,0,0,0,2.87094135407487,0,0,0 +"1777.75610351562",0,0,0,2.53004954013296,0,0,0,0,0 +"1778.0078125",0,2.31832908713508,0,0,0,0,0,0,0 +"1778.18408203125",0,0,0,0,0,0,0,0,0 +"1778.30993652344",0,0,0,0,0,0,0,0,0 +"1778.48620605469",0,0,3.98901317597629,0,0,0,0,0,0 +"1778.66247558594",0,3.16433366811174,0,2.65126482483864,0,0,0,0,0 +"1779.09057617188",0,0,0,0,0,0,0,0,2.59169700607803 +"1779.19128417969",0,0,0,0,0,0,0,0,0 +"1779.39282226562",0,0,0,0,0,0,0,0,0 +"1779.56909179688",0,0,0,2.33076492328735,0,0,0,0,0 +"1779.94689941406",0,0,0,0,0,0,0,0,0 +"1780.32470703125",0,0,0,2.4257131744429,0,0,0,0,0 +"1780.72778320312",0,2.37946832190208,0,0,0,0,0,0,0 +"1780.97973632812",0,0,0,0,0,0,0,0,0 +"1781.23168945312",0,0,0,0,0,0,0,0,0 +"1781.66015625",0,0,5.0292704098515,0,0,0,0,0,0 +"1782.08862304688",0,0,0,0,0,0,0,0,0 +"1782.16418457031",0,0,0,0,0,0,0,0,0 +"1782.49182128906",0,0,0,0,0,0,0,0,0 +"1783.02124023438",0,0,0,2.53004954013296,0,0,0,0,0 +"1783.42468261719",0,0,0,2.65126482483864,0,0,0,0,3.10334539081625 +"1783.75244140625",0,0,0,0,0,0,0,0,0 +"1784.05505371094",2.1909326172171,0,0,0,0,0,0,0,4.9817177915226 +"1784.5341796875",0,0,0,0,0,0,0,0,0 +"1785.01342773438",0,0,0,0,0,0,0,0,0 +"1785.11437988281",0,0,0,0,0,0,0,0,0 +"1785.265625",0,0,4.10701736418568,3.01750955349227,0,0,0,0,0 +"1785.59362792969",0,2.47619822533908,0,3.05204384050417,0,0,0,0,0 +"1786.02258300781",0,0,0,0,0,0,0,0,0 +"1786.27490234375",0,3.77113667169109,0,0,0,4.57547901402905,0,0,2.77858694038695 +"1786.67858886719",1.66717923697657,0,0,0,0,0,0,0,0 +"1786.830078125",0,0,0,0,0,0,0,0,0 +"1787.00671386719",0,0,0,0,0,0,0,0,0 +"1787.25915527344",1.65155386220219,0,0,0,0,0,0,0,0 +"1787.56201171875",0,0,0,0,0,0,0,0,0 +"1787.89013671875",0,0,0,0,0,0,0,0,0 +"1788.44567871094",0,0,0,0,0,0,0,0,0 +"1788.79907226562",0,0,0,0,0,0,0,0,0 +"1789.05163574219",0,0,0,0,0,0,0,0,0 +"1789.68298339844",0,0,0,3.05204384050417,0,0,0,0,0 +"1790.1376953125",0,0,2.7069060375977,0,0,0,0,0,0 +"1790.66821289062",0,0,4.45973281009547,0,0,0,0,0,0 +"1791.02197265625",0,0,0,2.82649219010843,0,0,0,0,0 +"1791.35046386719",0,0,0,0,0,0,0,0,0 +"1791.50207519531",0,0,0,0,0,0,0,0,0 +"1791.60314941406",0,0,0,3.05204384050417,0,0,0,0,0 +"1791.75476074219",0,1.94143966028289,2.85348078694355,0,0,0,0,0,3.19501183725156 +"1792.13391113281",0,0,0,0,0,0,0,0,0 +"1792.56359863281",0,2.86811573333811,0,0,0,0,0,0,0 +"1792.99328613281",0,0,0,3.4434347416352,0,0,0,0,0 +"1793.27136230469",0,2.09187744068383,0,0,0,0,0,0,0 +"1793.7265625",0,0,0,0,0,0,0,0,0 +"1794.33349609375",0,0,0,0,0,0,0,0,0 +"1794.45983886719",0,0,3.09801829861317,0,0,0,0,0,0 +"1794.63696289062",0,0,0,0,0,0,0,0,0 +"1794.71276855469",0,0,0,0,0,0,0,0,0 +"1794.96569824219",0,0,0,0,0,0,0,0,0 +"1795.29455566406",0,0,0,0,0,0,0,0,0 +"1795.42114257812",0,0,0,0,0,0,0,0,0 +"1795.54760742188",0,0,0,0,0,0,0,0,0 +"1795.82592773438",0,0,0,2.43401236807582,0,0,0,0,0 +"1796.40783691406",0,0,0,2.40165592286708,0,0,0,0,0 +"1796.73681640625",0,0,0,0,0,0,0,0,0 +"1796.888671875",0,0,0,0,0,0,0,0,0 +"1796.98986816406",1.71230568950202,0,0,0,0,0,0,0,0 +"1797.26831054688",0,0,0,0,0,0,0,0,0 +"1797.54675292969",0,0,0,0,0,0,0,0,0 +"1797.77453613281",0,0,0,0,0,0,0,0,4.23559254239174 +"1798.10363769531",0,0,0,0,0,0,0,0,0 +"1798.5087890625",0,0,0,3.12184591918233,0,0,0,0,0 +"1798.76196289062",0,0,5.01005981731836,0,0,0,0,0,0 +"1799.31909179688",0,0,0,3.34739756957807,0,0,0,0,0 +"1799.87634277344",0,0,0,0,0,0,0,0,0 +"1800.15490722656",0,3.53311887436892,0,0,0,0,0,0,3.1912163509561 +"1800.458984375",0,0,0,0,0,0,0,0,0 +"1800.81359863281",0,0,0,0,0,0,0,0,0 +"1801.19372558594",0,0,0,2.4257131744429,0,0,0,0,0 +"1801.52307128906",0,0,0,0,0,0,0,0,0 +"1801.77648925781",0,2.14197335754029,0,0,4.23752941958461,0,0,0,3.0768546959922 +"1802.41015625",0,0,0,0,0,0,0,0,0 +"1802.56225585938",0,0,0,0,0,0,0,0,3.16909435019825 +"1802.94250488281",0,0,0,0,0,0,0,0,0 +"1803.11987304688",0,0,0,0,0,0,0,0,0 +"1803.19604492188",0,0,0,0,0,0,0,0,0 +"1803.29736328125",0,1.9754771657809,0,0,0,0,0,0,3.45653579093852 +"1803.677734375",0,0,4.7838776948688,0,0,0,0,0,0 +"1804.03271484375",0,0,0,0,0,0,0,0,0 +"1804.38781738281",0,0,0,0,0,0,0,0,0 +"1804.51452636719",0,0,0,0,0,0,0,0,0 +"1804.64135742188",1.98916647163581,0,0,3.07719001298158,0,0,0,0,2.78941325525192 +"1805.07263183594",0,0,0,0,0,0,0,0,0 +"1805.478515625",0,0,0,0,0,0,0,0,0 +"1805.68139648438",0,0,0,0,0,0,0,0,0 +"1806.23962402344",0,0,0,3.32221945692952,0,0,0,0,0 +"1806.54406738281",0,0,0,2.50490336765556,3.5174054467792,0,0,0,0 +"1806.9501953125",0,0,0,0,0,0,0,0,0 +"1807.30541992188",0,0,0,2.53004954013296,0,2.77486945065883,0,0,2.88350714088451 +"1807.76232910156",0,0,0,0,0,0,0,0,0 +"1808.14318847656",0,0,0,0,0,0,0,0,0 +"1808.42248535156",0,0,3.06045231685998,2.4257131744429,0,0,0,0,0 +"1808.85412597656",0,0,0,0,0,0,0,0,0 +"1809.05725097656",0,0,0,0,0,0,0,0,0 +"1809.15881347656",0,0,0,0,0,0,0,0,0 +"1809.59057617188",0,0,0,0,0,0,0,0,0 +"1810.04772949219",2.76118058729632,2.03367730323236,0,0,0,0,0,0,0 +"1810.50500488281",0,0,0,0,0,0,0,0,2.60930264090603 +"1811.01306152344",0,0,0,0,0,0,0,0,0 +"1811.26721191406",0,0,0,0,0,0,0,0,0 +"1811.67370605469",0,0,0,0,0,0,0,0,0 +"1811.97875976562",0,2.48776437621,0,2.82649219010843,0,0,0,0,3.08953524228371 +"1812.53784179688",0,0,3.76283105352672,0,0,0,0,0,0 +"1813.04626464844",0,0,0,0,0,0,0,0,0 +"1813.30053710938",0,0,0,0,0,0,0,0,0 +"1814.01245117188",0,0,0,0,0,2.72146265105291,0,0,0 +"1814.24133300781",0,3.44898545201446,0,0,0,0,0,0,3.55766050514063 +"1814.64819335938",0,0,0,0,0,0,0,0,0 +"1814.80078125",0,0,0,0,0,0,0,0,0 +"1815.15686035156",0,0,0,0,0,0,0,0,0 +"1815.51306152344",0,0,0,0,0,0,0,0,0 +"1815.76745605469",0,0,0,2.33076492328735,3.885414160172,3.14268323290905,0,0,0 +"1816.2763671875",0,0,0,0,0,0,0,0,0 +"1816.55615234375",0,2.31832908713508,0,0,3.96798013270278,0,0,0,0 +"1816.93786621094",0,0,0,0,0,0,0,0,0 +"1817.14147949219",0,2.43819129231393,0,0,0,0,0,0,0 +"1817.26879882812",0,0,0,0,0,0,0,0,0 +"1817.49780273438",0,0,0,0,3.79820464066427,0,0,0,0 +"1817.80334472656",0,2.66412010580479,3.83613061317995,0,0,0,0,0,0 +"1818.10876464844",0,0,0,0,0,0,0,0,0 +"1818.21057128906",0,0,0,3.19273691876206,0,0,0,0,3.26318823583083 +"1818.54162597656",0,0,0,0,0,0,0,0,0 +"1818.79614257812",0,0,0,2.43401236807582,4.41261354188616,0,0,0,0 +"1819.15270996094",0,0,0,0,3.13683245805084,0,0,0,3.20824877801335 +"1819.43286132812",0,0,3.07963853943252,0,0,0,0,0,0 +"1819.712890625",0,0,0,0,0,0,0,0,0 +"1819.89123535156",0,0,0,0,3.21279207055533,0,0,0,0 +"1820.06958007812",0,0,0,0,0,0,0,0,0 +"1820.17138671875",0,2.64217158413809,3.61628067414148,0,0,0,0,0,0 +"1820.73181152344",0,2.1760108630383,0,0,0,0,0,0,0 +"1820.98657226562",0,0,0,3.46861285428375,3.44608938125166,0,0,0,0 +"1821.1904296875",0,2.14145052457991,0,0,0,0,0,0,0 +"1821.57263183594",0,0,0,0,0,0,0,0,0 +"1821.92944335938",0,1.9754771657809,4.70510115511757,0,0,0,0,0,0 +"1822.43908691406",0,0,0,0,0,0,0,0,0 +"1822.515625",0,3.03239781481074,0,0,0,0,0,0,0 +"1822.94885253906",0,0,0,0,0,0,0,0,0 +"1823.35681152344",0,0,0,0,0,0,0,0,0 +"1823.71374511719",0,0,0,0,0,0,0,0,0 +"1823.89221191406",0,2.90267607179649,0,0,0,0,0,0,0 +"1824.45324707031",0,1.9875661496122,0,0,3.62722546354245,0,0,0,0 +"1825.01428222656",0,0,0,0,0,0,0,0,0 +"1825.34582519531",0,3.24898992342659,0,0,0,0,0,0,0 +"1825.65197753906",0,1.9495438808779,0,0,0,0,0,0,4.2532149905202 +"1826.41735839844",2.12563006453557,0,3.45789676128654,0,0,0,0,0,0 +"1827.1318359375",0,0,0,0,0,3.22009748033748,0,0,0 +"1827.46362304688",0,0,0,0,0,0,0,0,0 +"1827.79541015625",0,0,0,0,0,0,0,0,0 +"1827.99963378906",1.79256818048364,0,0,2.33076492328735,0,3.60043488083296,0,0,0 +"1828.58679199219",0,0,0,2.85167030275698,0,0,0,0,0 +"1828.84216308594",0,0,0,2.33076492328735,0,0,0,0,0 +"1829.25073242188",0,0,0,0,0,0,0,0,0 +"1829.58264160156",0,0,0,2.95600666844704,0,0,0,0,0 +"1829.86364746094",0,0,0,0,3.7387877671862,0,0,0,0 +"1830.24670410156",0,1.99963979773436,0,0,0,0,0,0,0 +"1830.50207519531",0,0,0,2.81822493664666,0,0,0,0,0 +"1830.9619140625",0,0,0,0,0,0,0,0,0 +"1831.08972167969",0,0,0,0,0,0,0,0,0 +"1831.39624023438",0,0,0,2.55522765278151,0,0,0,0,0 +"1831.67736816406",0,2.03367730323236,0,0,0,0,0,0,0 +"1832.31616210938",0,0,3.38459720163331,0,0,0,0,0,0 +"1832.72509765625",0,0,0,0,0,0,0,0,0 +"1832.90405273438",0,0,0,0,0,0,0,0,0 +"1833.0830078125",0,0,0,3.21897201214104,0,0,0,0,0 +"1833.26196289062",0,0,0,0,3.42953084398538,0,0,0,0 +"1833.46643066406",0,0,0,0,0,0,0,0,0 +"1833.74768066406",0,0,0,2.72215582441838,0,0,0,0,0 +"1833.97778320312",0,0,0,0,0,2.90407460870667,0,0,3.53737592250885 +"1834.41247558594",0,0,0,0,0,0,0,0,0 +"1834.56591796875",0,2.27221793351491,0,0,0,0,0,0,0 +"1835.02624511719",0,0,0,0,0,0,0,0,0 +"1835.15405273438",0,0,0,0,0,0,0,0,0 +"1835.64013671875",0,0,0,0,6.8293220271316,0,0,0,0 +"1835.99816894531",0,0,0,0,0,0,0,0,0 +"1836.27966308594",0,0,0,0,3.664031839765,0,0,0,0 +"1836.56103515625",0,0,0,0,0,0,0,0,0 +"1836.76574707031",0,2.04575095135452,0,0,0,0,0,0,0 +"1837.1240234375",0,0,0,0,0,0,0,0,0 +"1837.43115234375",0,2.2140331317726,0,2.84337110912406,4.75335241280665,0,0,0,0 +"1837.94299316406",0,0,0,0,0,0,0,0,0 +"1838.12219238281",0,1.9754771657809,0,0,0,0,0,0,0 +"1838.48059082031",1.80166359738134,0,0,0,0,0,0,0,0 +"1838.78771972656",0,2.64217158413809,7.11257425053369,2.4005670019655,0,3.67784912826138,0,0,0 +"1839.73510742188",0,0,0,0,0,0,0,0,0 +"1840.06811523438",0,0,0,2.72215582441838,0,0,0,0,0 +"1840.19616699219",0,3.11820717878243,0,0,0,0,0,0,0 +"1840.47790527344",0,0,0,0,0,0,0,0,0 +"1840.78527832031",0,0,0,3.05204384050417,0,0,0,0,0 +"1841.29760742188",0,0,0,0,0,0,0,0,0 +"1841.63061523438",0,0,0,0,0,0,0,0,0 +"1841.91247558594",0,0,0,3.39311045650925,0,0,0,0,0 +"1842.32250976562",0,0,0,2.52178228667118,0,0,0,0,0 +"1842.83508300781",0,0,0,2.94770747481412,0,0,0,0,0 +"1843.37329101562",0,0,0,0,0,0,0,0,2.76477679185441 +"1843.7578125",0,0,0,0,0,0,0,0,0 +"1843.83471679688",0,0,0,0,0,0,0,0,0 +"1844.09118652344",0,0,0,0,0,0,0,0,0 +"1844.45007324219",0,0,0,0,3.8866178452553,0,0,0,0 +"1844.78344726562",0,0,5.99354047690725,0,0,0,0,0,0 +"1845.11682128906",0,0,5.46159322886501,0,0,0,0,0,0 +"1845.50158691406",0,0,0,0,0,0,0,0,0 +"1846.1171875",0,0,0,0,0,0,0,0,0 +"1846.88684082031",0,0,0,0,0,2.72146265105291,0,0,0 +"1847.19470214844",0,0,0,2.85167030275698,3.78630544861479,3.41782292317921,0,0,0 +"1847.73364257812",0,1.99963979773436,0,0,0,0,0,0,0 +"1848.24694824219",0,2.08325038712844,0,0,0,0,0,0,0 +"1848.60632324219",2.41087251966592,0,0,3.05204384050417,0,0,0,0,2.87082659459299 +"1848.96569824219",0,0,0,0,0,0,0,0,0 +"1849.55627441406",0,2.63009793601594,0,0,0,0,0,0,0 +"1849.99279785156",0,0,0,0,0,0,0,0,0 +"1850.32666015625",0,0,0,0,3.4104866901124,0,0,0,0 +"1850.68615722656",0,0,0,0,0,0,0,0,0 +"1851.07153320312",0,0,0,0,0,0,0,0,0 +"1851.27697753906",0,0,0,0,5.36723851047119,0,0,0,0 +"1851.45678710938",0,0,0,0,0,0,0,0,0 +"1851.53381347656",0,0,0,0,0,0,0,0,0 +"1851.99633789062",0,0,0,0,0,0,0,0,2.81590395007597 +"1852.56164550781",0,0,0,0,0,0,0,0,0 +"1852.84436035156",0,0,0,2.62611865236124,0,0,0,0,0 +"1852.94714355469",0,0,0,0,0,0,0,0,0 +"1853.04992675781",0,0,0,0,0,0,0,0,0 +"1853.33264160156",0,0,0,2.62611865236124,0,0,0,0,0 +"1853.66674804688",0,0,0,0,0,0,0,0,0 +"1853.94958496094",0,0,2.76099500471779,0,0,0,0,0,3.09010845005446 +"1854.28381347656",1.86331780133692,0,0,0,0,0,0,0,0 +"1854.77233886719",1.84856357271931,0,0,2.33076492328735,3.55300813791846,0,0,0,3.9284565400909 +"1855.33801269531",0,0,0,2.69700965194097,0,0,0,0,0 +"1855.67236328125",0,0,0,0,0,0,0,0,0 +"1855.95520019531",0,0,0,0,0,0,0,0,0 +"1856.36682128906",0,2.37999115486246,0,2.94661855391254,0,0,0,0,0 +"1856.80419921875",0,0,2.7069060375977,0,0,0,0,0,0 +"1857.57604980469",0,0,0,0,0,0,0,0,0 +"1857.73046875",0,0,0,0,0,0,0,0,0 +"1858.03930664062",0,0,0,0,0,0,0,0,0 +"1858.42529296875",0,0,0,0,0,0,0,0,0 +"1858.99157714844",0,0,0,0,3.45800437154099,0,0,0,0 +"1859.42919921875",0,0,0,0,0,0,0,0,0 +"1859.73815917969",0,2.29585773250799,0,0,0,0,0,0,0 +"1860.07287597656",0,0,0,0,0,0,0,0,0 +"1860.35620117188",0,2.41350582740009,2.62729866449399,0,0,0,0,0,0 +"1860.69091796875",2.63533191699744,0,0,0,0,0,0,0,0 +"1861",0,0,0,0,0,0,0,0,0 +"1861.30908203125",0,2.329895238006,0,0,0,0,0,0,0 +"1861.64392089844",0,2.46412457721692,0,3.34739756957807,0,0,0,0,0 +"1862.1591796875",0,0,0,0,0,0,0,0,0 +"1862.57141113281",0,0,0,0,0,0,0,0,0 +"1862.8291015625",0,0,0,2.81822493664666,0,0,0,0,0 +"1862.9580078125",0,0,0,0,0,0,0,0,0 +"1863.13842773438",0,0,0,2.32967600238577,0,0,0,0,0 +"1863.49914550781",0,0,0,0,0,0,0,0,0 +"1863.85998535156",0,0,2.62729866449399,0,0,0,0,0,0 +"1864.22094726562",1.79731858168213,2.18756167820007,0,2.4257131744429,4.32473893909234,0,0,0,0 +"1864.68493652344",0,0,0,0,0,0,0,0,0 +"1864.83959960938",0,2.09135460772345,0,0,0,0,0,0,0 +"1865.14904785156",0,0,0,0,3.92168193459735,0,0,0,0 +"1865.81945800781",0,0,0,0,0,0,0,0,0 +"1866.77380371094",0,0,0,0,0,0,0,0,0 +"1867.1865234375",0,0,0,0,0,0,0,0,0 +"1867.65100097656",0,0,0,0,0,0,0,0,0 +"1867.93481445312",0,0,0,0,0,0,0,0,3.69342328122798 +"1868.21862792969",0,2.05783993518582,0,0,0,0,0,0,0 +"1868.50256347656",0,0,0,0,0,0,0,0,0 +"1868.78649902344",0,0,0,0,0,0,0,0,5.40057012758449 +"1869.22521972656",0,0,0,0,4.57113912692144,0,0,0,0 +"1869.63830566406",1.70503210284369,0,0,0,3.2722089440334,0,0,0,2.7780137326162 +"1869.94812011719",0,0,0,0,0,0,0,0,0 +"1870.25793457031",0,0,0,2.40165592286708,0,0,0,0,0 +"1870.41284179688",0,0,0,0,0,0,0,0,0 +"1870.5419921875",0,0,0,2.84337110912406,0,0,0,0,0 +"1870.90344238281",0,0,0,0,0,0,0,0,0 +"1871.31665039062",0,0,0,0,0,0,0,0,0 +"1871.44580078125",0,0,0,0,0,0,0,0,0 +"1871.60083007812",0,0,0,0,0,0,0,0,0 +"1871.67822265625",0,0,0,0,0,0,0,0,0 +"1871.85913085938",1.94696859006947,0,0,0,0,0,0,0,0 +"1872.06579589844",0,0,0,0,0,0,0,0,0 +"1872.5048828125",0,0,0,0,0,0,0,0,0 +"1872.94409179688",0,0,0,0,0,0,0,0,0 +"1873.22839355469",0,0,0,0,0,0,0,0,0 +"1873.64184570312",0,2.14197335754029,0,3.59351593442759,0,0,0,0,0 +"1874.13293457031",0,2.14197335754029,0,0,0,0,0,0,0 +"1874.52062988281",0,0,0,3.01750955349227,0,0,0,0,0 +"1874.77917480469",0,0,0,0,0,0,0,0,0 +"1875.34790039062",0,0,0,0,0,0,0,0,0 +"1875.50305175781",0,0,0,0,0,0,0,0,3.48245327799183 +"1875.86499023438",0,0,0,0,0,0,0,0,0 +"1876.12365722656",0,0,0,2.57579436723529,0,0,0,0,0 +"1876.56323242188",0,0,0,0,0,0,0,0,0 +"1876.79602050781",0,0,0,0,0,0,0,0,0 +"1877.08056640625",0,0,0,0,0,0,0,0,0 +"1877.54626464844",0,2.18808451116045,0,0,0,0,0,0,0 +"1877.83081054688",0,0,0,0,4.04393974520728,5.47848239021737,0,0,0 +"1878.34826660156",0,0,0,3.02577680695405,0,0,0,0,0 +"1878.68469238281",0,0,0,2.32967600238577,0,0,0,0,0 +"1879.07287597656",0,0,0,0,0,0,0,0,0 +"1879.25402832031",0,0,0,0,0,0,0,0,0 +"1879.33166503906",0,0,0,0,0,0,0,0,0 +"1879.69409179688",0,0,0,0,0,0,0,0,0 +"1879.87524414062",0,0,0,2.53004954013296,0,2.85228369808725,0,0,0 +"1880.18591308594",0,0,2.79939181982347,0,4.52363724373271,0,0,0,0 +"1880.34130859375",0,0,0,2.55522765278151,0,0,0,0,0 +"1880.5224609375",0,0,0,2.33076492328735,0,0,0,0,0 +"1881.04028320312",0,0,0,0,0,0,0,0,0 +"1881.19567871094",0,2.04576628706367,0,3.22618228487238,0,0,0,0,0 +"1881.73950195312",0,0,0,0,0,4.78209841950531,0,0,0 +"1882.10217285156",0,0,0,0,6.57168773053911,0,0,0,0 +"1882.5166015625",0,0,0,0,0,0,0,0,0 +"1882.64611816406",0,0,0,0,3.96918381778608,0,0,0,0 +"1883.16430664062",0,0,0,0,0,3.17921429897682,0,0,0 +"1883.47521972656",0,0,0,0,0,0,0,0,0 +"1883.63061523438",0,0,0,0,0,0,0,0,0 +"1883.73425292969",0,0,0,0,0,0,0,0,0 +"1884.30444335938",0,0,0,0,0,0,0,0,0 +"1884.43408203125",0,2.43819129231393,0,0,0,3.09008437779639,0,0,0 +"1884.69323730469",0,0,0,2.33076492328735,0,0,0,0,0 +"1884.82275390625",0,0,0,0,0,0,0,0,0 +"1884.97839355469",0,0,0,0,0,3.54783602572029,0,0,0 +"1885.10791015625",2.43831617261463,0,0,0,0,3.38664164894633,0,0,0 +"1885.67822265625",0,0,0,0,0,0,0,0,0 +"1886.04125976562",0,0,0,2.33076492328735,0,0,0,0,0 +"1886.24865722656",0,0,0,0,0,0,0,0,0 +"1886.66357421875",0,0,0,0,0,0,0,0,0 +"1887.02673339844",0,0,0,0,0,0,0,0,0 +"1887.337890625",0,1.9875661496122,0,0,0,0,0,0,0 +"1887.77893066406",0,0,0,0,0,0,0,0,0 +"1887.9345703125",0,0,0,0,0,0,0,0,0 +"1888.19396972656",0,0,0,0,0,0,0,0,0 +"1888.60913085938",0,2.49816208271493,0,3.26820737636541,0,0,0,0,4.54065643126047 +"1889.15405273438",0,0,0,0,0,0,0,0,0 +"1889.49133300781",0,0,0,0,0,0,0,0,0 +"1889.67297363281",0,0,0,0,0,0,0,0,0 +"1889.80285644531",0,0,0,0,0,0,0,0,0 +"1890.19213867188",0,0,0,0,0,0,0,0,0 +"1890.52954101562",0,0,0,0,0,3.87911874190275,0,0,0 +"1891.20458984375",0,0,0,0,0,0,0,0,0 +"1891.67199707031",0,0,0,0,0,0,0,0,0 +"1891.82775878906",0,0,0,0,0,0,0,0,2.5676169371508 +"1892.29528808594",0,0,0,0,0,0,0,0,0 +"1893.04846191406",0,0,0,0,0,0,0,0,0 +"1893.12646484375",0,0,0,0,0,0,0,0,0 +"1893.51611328125",0,0,0,0,0,0,0,0,0 +"1894.19165039062",0,2.61800895218463,0,0,0,0,0,0,0 +"1894.52954101562",0,0,0,2.86851728160146,0,0,0,0,0 +"1894.81530761719",0,0,0,0,0,0,0,0,0 +"1895.36120605469",0,0,0,0,0,2.85228369808725,0,0,0 +"1895.77709960938",2.56593836572603,0,0,0,0,0,0,0,2.63522012795933 +"1896.03698730469",0,0,0,0,3.14874744834017,0,0,0,0 +"1896.27099609375",0,0,0,0,0,3.59962693633971,0,0,0 +"1896.42700195312",0,2.05731710222545,0,0,0,0,0,0,0 +"1896.53100585938",0,0,0,0,3.68718093881772,0,0,0,0 +"1896.791015625",0,0,2.68138763161408,0,0,0,0,0,0 +"1896.97302246094",0,0,0,0,0,0,0,0,0 +"1897.12902832031",0,0,0,2.4257131744429,0,0,0,0,0 +"1897.54516601562",0,0,0,0,0,0,0,0,0 +"1897.88330078125",0,0,0,0,0,0,0,0,0 +"1898.37756347656",0,0,0,0,0,0,0,0,0 +"1898.48156738281",0,0,0,0,0,0,0,0,0 +"1898.68969726562",0,0,0,0,0,0,0,0,0 +"1898.97583007812",0,0,0,2.74733393706692,0,0,0,0,0 +"1899.44421386719",0,0,0,0,0,0,0,0,0 +"1899.75646972656",0,0,2.85348078694355,2.32967600238577,0,0,0,0,0 +"1900.09484863281",0,0,0,2.32967600238577,0,0,0,0,0 +"1900.48522949219",0,0,0,0,0,0,0,0,0 +"1900.79748535156",0,0,0,0,0,0,0,0,0 +"1901.00573730469",0,2.23368816752938,0,0,0,0,0,0,0 +"1901.31811523438",0,0,0,0,0,0,0,0,0 +"1901.65661621094",0,0,0,0,0,0,0,0,0 +"1902.09924316406",0,0,0,0,0,0,0,0,0 +"1902.43774414062",0,0,0,0,0,0,0,0,0 +"1902.75024414062",0,0,0,0,0,2.85228369808725,0,0,0 +"1903.11486816406",0,0,0,0,0,0,0,0,0 +"1903.37536621094",0,0,0,0,0,3.43389071222411,0,0,0 +"1903.68798828125",0,0,0,0,0,0,0,0,0 +"1903.97448730469",0,0,0,0,0,0,0,0,0 +"1904.130859375",0,0,0,0,0,0,0,0,0 +"1904.44348144531",0,0,0,0,13.9691987072273,0,0,0,0 +"1904.73010253906",0,0,0,0,0,0,0,0,0 +"1905.06884765625",0,0,0,0,4.30158984003962,0,0,0,0 +"1905.53796386719",0,0,0,0,0,0,0,0,0 +"1905.87683105469",0,3.18680502273882,0,0,8.28611271176883,0,0,0,4.61584684510881 +"1906.50244140625",0,0,0,0,0,0,0,0,0 +"1906.86730957031",0,0,0,3.22618228487238,0,0,0,0,0 +"1907.38879394531",0,0,0,0,0,0,0,0,0 +"1907.75390625",0,0,0,0,4.07900383454933,0,0,0,0 +"1908.30151367188",0,0,0,0,0,0,0,0,0 +"1908.71887207031",0,0,0,2.40165592286708,0,0,0,0,0 +"1909.42321777344",0,2.6882980734674,3.31132201194068,0,0,0,0,0,0 +"1909.86682128906",0,2.56843586828855,0,0,0,4.04566291051161,0,0,0 +"1910.33642578125",0,0,2.7069060375977,0,0,0,0,0,0 +"1910.75402832031",0,0,0,0,0,0,0,0,0 +"1911.09326171875",0,2.41402866036047,0,2.94770747481412,3.61652995657627,3.73044798337405,0,0,0 +"1911.53698730469",0,0,0,0,0,0,0,0,0 +"1911.95471191406",0,0,0,0,0,0,0,0,0 +"1912.111328125",0,0,0,0,0,0,0,0,0 +"1912.29406738281",0,2.36790217103115,0,2.72215582441838,4.30051263644521,0,0,0,0 +"1912.84240722656",0,0,0,0,0,0,0,0,0 +"1912.97302246094",0,0,0,2.94770747481412,0,0,0,5.48255272301252,0 +"1913.57360839844",0,0,0,0,0,0,0,0,0 +"1913.73034667969",0,2.18756167820007,0,0,0,0,0,0,0 +"1914.12219238281",0,0,0,0,0,0,0,0,0 +"1914.435546875",0,2.7021423745391,0,0,0,0,0,0,4.99497154558486 +"1915.06262207031",0,0,0,0,0,0,0,0,0 +"1915.68969726562",0,0,0,0,0,0,0,0,0 +"1915.92492675781",0,0,0,2.80134601763103,0,0,0,0,0